/* ============================================
   SYSTÈME D'ONGLETS MODULAIRE
   ============================================ */

.modules-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px); /* Hauteur viewport moins header */
    min-height: 500px;
}

/* Barre d'onglets */
.modules-tabs {
    display: flex;
    background: #f5f5f5;
    border-bottom: 2px solid #e0e0e0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.modules-tabs::-webkit-scrollbar {
    height: 4px;
}

.modules-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modules-tabs::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 4px;
}

/* Onglet individuel */
.module-tab {
    flex: 0 0 auto;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
}

.module-tab:hover {
    background: rgba(0, 159, 227, 0.05);
    color: #111827;
    border-bottom-color: rgba(0, 159, 227, 0.3);
}

.module-tab.active {
    color: #111827;
    border-bottom-color: #009FE3;
    background: white;
}

.module-tab:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Icône de l'onglet */
.module-tab-icon {
    width: 18px;
    height: 18px;
}

/* Badge indicateur de complétion */
.module-tab-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
}

.module-tab-badge.completed {
    background: #4CAF50;
}

.module-tab-badge.in-progress {
    background: #FF9800;
}

.module-tab-badge.empty {
    background: #e0e0e0;
}

/* Contenu des modules */
.modules-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    background: white;
}

.module-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.module-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* En-tête du module */
.module-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.module-header h2 {
    font-size: 24px;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.module-header p {
    color: #666;
    font-size: 14px;
}

/* État de complétion du module */
.module-completion {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
}

.module-completion-bar {
    flex: 1;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.module-completion-progress {
    height: 100%;
    background: linear-gradient(90deg, #009FE3, #007AB3);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.module-completion-text {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    min-width: 40px;
    text-align: right;
}

/* Footer du module avec actions */
.module-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-footer-left {
    display: flex;
    gap: 12px;
}

.module-footer-right {
    display: flex;
    gap: 12px;
}

/* Message d'information */
.module-info {
    padding: 16px;
    background: #f3f4f6;
    border-left: 4px solid #6b7280;
    border-radius: 4px;
    margin-bottom: 24px;
}

.module-info p {
    color: #374151;
    font-size: 14px;
    margin: 0;
}

/* Message d'avertissement */
.module-warning {
    padding: 16px;
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
    border-radius: 4px;
    margin-bottom: 24px;
}

.module-warning p {
    color: #F57C00;
    font-size: 14px;
    margin: 0;
}

/* Message de succès */
.module-success {
    padding: 16px;
    background: #E8F5E9;
    border-left: 4px solid #4CAF50;
    border-radius: 4px;
    margin-bottom: 24px;
}

.module-success p {
    color: #388E3C;
    font-size: 14px;
    margin: 0;
}

/* Animation de sauvegarde */
.module-saving {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FFF3E0;
    border-radius: 20px;
    font-size: 13px;
    color: #F57C00;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   VALIDATION & UX ENHANCEMENTS
   ============================================ */

/* Required field indicator */
label.required::after {
    content: " *";
    color: #ef4444;
    font-weight: 600;
}

/* Field error state */
input.field-error,
textarea.field-error,
select.field-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2;
}

input.field-error:focus,
textarea.field-error:focus,
select.field-error:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Error message */
.field-error-message {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 8px 12px;
    background: #fef2f2;
    border-left: 3px solid #ef4444;
    border-radius: 4px;
    font-size: 13px;
    color: #dc2626;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tooltip container */
.tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #e5e7eb;
    border-radius: 50%;
    cursor: help;
    transition: all 0.2s ease;
    position: relative;
}

.tooltip-icon:hover {
    background: #009FE3;
    color: white;
}

.tooltip-icon svg {
    width: 12px;
    height: 12px;
}

/* Tooltip bubble */
.tooltip-content {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    white-space: normal;
    max-width: 280px;
    width: max-content;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
}

.tooltip-icon:hover .tooltip-content {
    opacity: 1;
}

/* Success state for fields */
input.field-success,
textarea.field-success {
    border-color: #10b981 !important;
    background-color: #f0fdf4;
}

/* Responsive */
@media (max-width: 768px) {
    .modules-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .module-tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .modules-content {
        padding: 20px 16px;
    }

    .module-footer {
        flex-direction: column;
        gap: 16px;
    }

    .module-footer-left,
    .module-footer-right {
        width: 100%;
        flex-direction: column;
    }

    .module-footer-left button,
    .module-footer-right button {
        width: 100%;
    }

    .tooltip-content {
        max-width: 200px;
        font-size: 12px;
    }
}

/* ============================================
   RÉSEAUX SOCIAUX - SYSTÈME DYNAMIQUE
   ============================================ */

.social-networks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-network-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.2s ease;
}

.social-network-item:hover {
    border-color: rgba(0, 159, 227, 0.3);
    box-shadow: 0 2px 8px rgba(0, 159, 227, 0.1);
}

.social-network-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.social-network-name {
    flex: 1;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.btn-remove-social {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-remove-social:hover {
    background: #fee;
    color: #f44336;
}

.btn-remove-social i {
    width: 18px;
    height: 18px;
}

.social-network-url {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.social-network-url:focus {
    outline: none;
    border-color: #009FE3;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}

/* ============================================
   VALEURS D'ENTREPRISE (Company Values Cards)
   ============================================ */

.company-values-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-value-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-left: 4px solid #6b7280;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.2s ease;
}

.company-value-card:hover {
    border-left-color: #009FE3;
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.15);
    transform: translateX(4px);
}

.company-value-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-value-number {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.company-value-text {
    flex: 1;
    font-weight: 500;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

.btn-remove-value {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-remove-value:hover {
    background: #fee;
    color: #f44336;
}

.btn-remove-value i {
    width: 18px;
    height: 18px;
}

/* ============================================
   VALEURS POSITIONNEMENT (2-Column Grid Layout)
   ============================================ */

/* Container for all value cards in 2 columns */
#positioning-values-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

/* Individual value card */
.positioning-value-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px 20px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.positioning-value-card:hover {
    border-color: #009FE3;
    box-shadow: 0 2px 12px rgba(0, 159, 227, 0.1);
}

/* Content wrapper inside each card */
.positioning-value-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Label style */
.positioning-value-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

/* Value name input */
.positioning-value-name-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
}

.positioning-value-name-input:focus {
    outline: none;
    border-color: #009FE3;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}

.positioning-value-name-input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Justification textarea */
.positioning-value-justification {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    resize: vertical;
    min-height: 80px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.positioning-value-justification:focus {
    outline: none;
    border-color: #009FE3;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}

.positioning-value-justification::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Remove button */
.btn-remove-positioning-value {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    align-self: flex-end;
}

.btn-remove-positioning-value:hover {
    background: #fee;
    color: #f44336;
}

.btn-remove-positioning-value i {
    width: 18px;
    height: 18px;
}

/* Responsive: single column on smaller screens */
@media (max-width: 1024px) {
    #positioning-values-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ÉTAT D'ESPRIT (Mindset - 2 Columns Grid)
   ============================================ */

/* Container for mindset items in 2 columns */
#positioning-mindset-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

/* Individual mindset item */
.mindset-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mindset-item input[type="text"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
}

.mindset-item input[type="text"]:focus {
    outline: none;
    border-color: #009FE3;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}

.mindset-item input[type="text"]::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Remove button for mindset item */
.mindset-item .btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: transparent;
    border: 1px solid #ddd;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
    flex-shrink: 0;
}

.mindset-item .btn-icon:hover {
    background: #fee;
    border-color: #f44336;
    color: #f44336;
}

/* Actions container */
.mindset-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/* Empty state */
.empty-mindset {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #666;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 10px;
}

.empty-mindset p {
    margin: 0 0 16px 0;
    font-size: 14px;
}

/* Responsive: single column on smaller screens */
@media (max-width: 768px) {
    #positioning-mindset-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MODAL SÉLECTION RÉSEAUX SOCIAUX
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.modal-close {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-close i {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.social-networks-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.social-network-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.social-network-option:hover {
    background: white;
    border-color: #009FE3;
    color: #009FE3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.15);
}

.social-network-option i {
    width: 32px;
    height: 32px;
}

.social-network-option-other {
    border-color: #6b7280;
    background: rgba(107, 114, 128, 0.05);
    color: #6b7280;
}

.social-network-option-other:hover {
    background: rgba(0, 159, 227, 0.05);
    border-color: #009FE3;
    color: #009FE3;
}

/* Objectifs par réseau (champs dynamiques) */
.objective-by-network-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s ease;
}

.objective-by-network-item:hover {
    border-color: rgba(0, 159, 227, 0.3);
    box-shadow: 0 2px 8px rgba(0, 159, 227, 0.1);
}

.objective-by-network-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.objective-by-network-item label i {
    width: 18px;
    height: 18px;
    color: #6b7280;
    flex-shrink: 0;
}

.objective-by-network-item textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.objective-by-network-item textarea:focus {
    outline: none;
    border-color: #009FE3;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}

/* Objectifs stratégiques - Style Tags */
.objectives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 15px;
}

.objective-tag-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.objective-tag-checkbox {
    display: none;
}

.objective-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.objective-tag i {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.objective-tag:hover {
    background: rgba(0, 159, 227, 0.05);
    border-color: #009FE3;
    color: #009FE3;
}

.objective-tag:hover i {
    opacity: 1;
}

.objective-tag-checkbox:checked + .objective-tag {
    background: #6b7280;
    border-color: #6b7280;
    color: white;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.objective-tag-checkbox:checked + .objective-tag i {
    opacity: 1;
}

.objective-tag-kpi {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.objective-tag-kpi.visible {
    max-height: 100px;
    opacity: 1;
    margin-top: 4px;
}

.objective-kpi-input {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.objective-kpi-input:focus {
    outline: none;
    border-color: #009FE3;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .objective-tag {
        width: 100%;
        justify-content: center;
    }

    .objective-kpi-input {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .social-networks-grid-modal {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .social-network-option {
        padding: 16px 12px;
        font-size: 13px;
    }

    .social-network-option i {
        width: 28px;
        height: 28px;
    }
}

/* ====================================================================
   GRIDS 2 COLONNES - VALEURS & ASPIRATION
   ==================================================================== */

/* Grid pour Valeurs de l'Entreprise (2 colonnes) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Grid pour Aspiration (2 colonnes) */
.aspiration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Cartes Aspiration (style similar aux Valeurs mais plus compact) */
.aspiration-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aspiration-card:hover {
    border-color: #009FE3;
    box-shadow: 0 2px 12px rgba(0, 159, 227, 0.1);
}

.aspiration-card-content {
    flex: 1;
}

.aspiration-word-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.aspiration-word-input:focus {
    outline: none;
    border-color: #009FE3;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}

.btn-remove-aspiration {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: #999;
}

.btn-remove-aspiration:hover {
    background: #fee;
    border-color: #fcc;
    color: #e74c3c;
}

.btn-remove-aspiration i {
    width: 18px;
    height: 18px;
}

/* Empty states */
.empty-values,
.empty-aspiration {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 10px;
}

.empty-values p,
.empty-aspiration p {
    color: #999;
    margin-bottom: 16px;
    font-size: 14px;
}

/* Actions buttons */
.values-actions,
.aspiration-actions {
    margin-top: 12px;
    text-align: center;
}

/* Responsive - Mobile  */
@media (max-width: 768px) {
    .values-grid,
    .aspiration-grid {
        grid-template-columns: 1fr;
    }
}
