/* Dashboard Mon Compte */
.gp-login-header {
    text-align: center;
    margin-bottom: 32px;
}
.gp-login-header h1 {
    font-size: 28px;
    color: #0B4A43;
    margin: 0 0 8px;
}
.gp-login-header p {
    color: #7A7A7A;
    font-size: 15px;
    margin: 0;
}
.gp-dashboard__hello {
    text-align: center;
    margin-bottom: 32px;
}
.gp-dashboard__hello h2 {
    font-size: 24px;
    color: #0B4A43;
    margin: 0 0 4px;
}
.gp-dashboard__hello p {
    color: #7A7A7A;
    font-size: 15px;
    margin: 0;
}
.gp-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.gp-dashboard__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #eee;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.gp-dashboard__card:hover {
    border-color: #24BBA5;
    box-shadow: 0 4px 16px rgba(36,187,165,0.08);
}
.gp-dashboard__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.gp-dashboard__card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gp-dashboard__card-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}
.gp-dashboard__card-desc {
    font-size: 12px;
    color: #7A7A7A;
}
.gp-dashboard__card--logout {
    border-color: #f0f0f0;
    opacity: 0.7;
}
.gp-dashboard__card--logout:hover {
    border-color: #E9602A;
    opacity: 1;
}
