/* Modern Dark Theme Variables */
:root {
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --primary: #3b82f6;
    --primary-glow: #60a5fa;
    --success: #22c55e;
    --error: #ef4444;
}


#csvValidate {color:#444;}

/* Main Layout */
.nervo-admin-page {
    background-color: var(--dark-bg);
    min-height: 100vh;
    padding: 2rem;
}

.nervo-content-wrapper {
    background-color: var(--dark-surface);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

/* File Upload Area */
.file-upload-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: var(--dark-surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.file-upload-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.file-upload-wrapper:hover::before {
    opacity: 1;
}

/* Hide the actual file input */
.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.upload-content {
    
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
    text-align: center;
}

.upload-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    background: url('../images/upload-icon.png') no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.file-upload-wrapper:hover .upload-icon {
    transform: translateY(-10px);
}

h5.dataset-sidebar-status.nervonlmapboxheader {color:#fff;
font-size: 1.1rem;}

.upload-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.upload-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Drag over state */
.file-upload-wrapper.dragover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.file-upload-wrapper.dragover::before {
    opacity: 1;
}

/* Upload progress animation */
.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #e11a1a, #f04444);
    transition: width 0.3s ease;
}

/* Success state */
.file-upload-wrapper.success {
    border-color: var(--success);
}

.file-upload-wrapper.success .upload-icon {
    background-image: url('../images/success-icon.png');
}

/* Error state */
.file-upload-wrapper.error {
    border-color: var(--error);
}

/* Selected file name display */
.selected-file-name {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.file-upload-wrapper.has-file .selected-file-name {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.upload-container {
    display: flex;
}

.delimiter-select {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 16px;
    align-self: center;
    color: #000;
}

.delimiter-select label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
}

.delimiter-select select {
    background: #fff;
    color: #000;
    border: 1px solid #999;
    border-radius: 8px;
    padding: 8px 10px;
}

.delimiter-help {
    font-size: 0.8rem;
    color: #000;
}

.delimiter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #000;
}

.delimiter-checkbox input[type="checkbox"] {
    accent-color: var(--primary);
}

.file-upload-area {
    position: relative;
    width: 250px;
    height: 230px;
    border-radius: 24px;
    background: linear-gradient(145deg, #1a1a3a, #2a2a5a);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Completely hide the default file input */
.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

/* Animated upload icon */
.upload-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4f46e5, #818cf8);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.upload-icon::after {
    content: '📁';
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
}

.upload-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.upload-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Glowing border effect */
.file-upload-area::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4f46e5, #818cf8, #4f46e5);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.file-upload-area:hover::before {
    opacity: 1;
}

/* Drag over state */
.file-upload-area.dragover {
    transform: scale(1.02);
    background: linear-gradient(145deg, #2a2a5a, #3a3a7a);
}

.file-upload-area.dragover .upload-icon::after {
    transform: scale(1.1);
}

/* Progress indicator */
.upload-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #818cf8);
    transition: width 0.3s ease;
}

/* File name display */
.selected-file {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.file-upload-area.has-file .selected-file {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Success state */
.file-upload-area.success .upload-icon::after {
    content: '✅';
    animation: none;
}

/* Error state */
.file-upload-area.error .upload-icon::after {
    content: '❌';
    animation: none;
}

/* Progress Modal Styles */
.progress-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.progress-container {
    position: relative;
    background: #1a1a2e;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.percentage {
    color: #4CAF50;
    font-weight: bold;
}

.progress-bar-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

.status-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #888;
}

/* Animation for progress bar shimmer effect */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Success state */
.progress-bar.success {
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

/* Error state */
.progress-bar.error {
    background: linear-gradient(90deg, #f44336, #d32f2f);
}

/* Add these styles to your existing CSS */
.process-confirmation {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    
}

.confirmation-message {
    color: #4CAF50;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.process-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.process-button:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.cancel-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cancel-button:hover {
    background: #d32f2f;
    transform: translateY(-1px);
}

.button-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Enhanced Confirmation Dialog Styles */
.process-confirmation {
    padding: 40px;
    animation: fadeScale 0.3s ease-out;
}

.confirmation-box {
    background: linear-gradient(145deg, rgba(32, 32, 48, 0.95), rgba(24, 24, 36, 0.95));
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-title {
    color: #4CAF50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.question-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin: 30px 0;
}

.confirmation-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
}

.button-label {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.btn-confirm, .btn-cancel {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-confirm {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.4);
}

.btn-cancel {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.3);
}

.btn-cancel:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(244, 67, 54, 0.4);
}

/* Icon styles */
.confirmation-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.confirmation-icon i {
    font-size: 45px;
    color: white;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Processing state */
.btn-confirm.processing {
    opacity: 0.8;
    cursor: wait;
}

.btn-confirm.processing span {
    opacity: 0.8;
}

.button-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Button icons */
.btn-confirm i, .btn-cancel i {
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .confirmation-box {
        padding: 30px 20px;
    }
    
    .confirmation-title {
        font-size: 24px;
    }
    
    .question-text {
        font-size: 20px;
    }
    
    .button-label {
        font-size: 20px;
    }
}

/* Override WordPress core button styles */
.wp-core-ui .button-group,
.wp-core-ui .confirmation-buttons {
    position: relative;
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    white-space: normal !important;
    font-size: 18px !important;
    vertical-align: middle;
    width: 100% !important;
}

/* Button specific styles */
.wp-core-ui .btn-confirm,
.wp-core-ui .btn-cancel {
    font-size: 18px !important;
    padding: 15px 30px !important;
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
    line-height: 1.4 !important;
    margin: 5px 0 !important;
}

/* Button text */
.wp-core-ui .btn-confirm span,
.wp-core-ui .btn-cancel span {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 10px;
  margin-top: 10px;
}

/* Button icons */
.wp-core-ui .btn-confirm i,
.wp-core-ui .btn-cancel i {
    font-size: 18px !important;
    margin-right: 8px !important;
}

/* Labels */
.wp-core-ui .button-label {
    font-size: 20px !important;
    display: block !important;
    margin-bottom: 8px !important;
    color: #ffffff !important;
    font-weight: bold !important;
}

/* Ensure buttons are clickable */
.wp-core-ui .btn-confirm,
.wp-core-ui .btn-cancel {
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

/* Button colors and hover states */
.wp-core-ui .btn-confirm {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    color: white !important;
    border: none !important;
}

.wp-core-ui .btn-cancel {
    background: linear-gradient(135deg, #f44336, #d32f2f) !important;
    color: white !important;
    border: none !important;
}

/* Hover effects */
.wp-core-ui .btn-confirm:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40) !important;
}

.wp-core-ui .btn-cancel:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c) !important;
}

/* Modal container */
.process-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90vh;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    z-index: 1000;
}

/* Confirmation box */
.confirmation-box {
    background: linear-gradient(145deg, rgba(30, 30, 43, 0), rgba(24, 24, 36, 0));
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Icon */
.confirmation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.confirmation-icon i {
    font-size: 30px;
}

/* Title and message */
.confirmation-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.question-text {
    font-size: 18px;
    margin: 15px 0;
}

/* Buttons container */
.confirmation-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 20px !important;
}

/* Button wrapper */
.button-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    min-width: 140px !important;
}

/* Button label */
.button-label {
    font-size: 16px !important;
    margin-bottom: 5px !important;
    text-align: center !important;
}

/* Buttons */
.wp-core-ui .btn-confirm,
.wp-core-ui .btn-cancel {
    padding: 10px 20px !important;
    font-size: 16px !important;
    min-height: 80px !important;
    width: 100% !important;
    min-width: 140px !important;
    max-width: 200px !important;
}

/* Modal container - keep it centered and compact */
.process-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90vh;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    z-index: 1000;
}

/* Confirmation box */
.confirmation-box {
    background: linear-gradient(145deg, rgba(32, 32, 48, 0), rgba(0, 0, 0, 0));
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .confirmation-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .button-wrapper {
        width: 100% !important;
    }

    .wp-core-ui .btn-confirm,
    .wp-core-ui .btn-cancel {
        max-width: 100% !important;
    }
}

/* Success Popup Styles */
.success-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1100;
    background: linear-gradient(145deg, #4CAF50, #45a049);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    color: white;
    min-width: 300px;
}

.success-popup .success-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.success-popup h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.success-popup .success-message {
    font-size: 16px;
}

/* Progress bar complete state */
.progress-bar.complete {
    background: linear-gradient(90deg, #4CAF50, #45a049) !important;
    transition: all 0.3s ease !important;
}

/* Success message animation */
@keyframes successPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-popup {
    animation: successPop 0.3s ease-out forwards;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}


.progress {
    background: #f0f0f0;
    border-radius: 20px;
    height: 20px;
    overflow: hidden;
}

.progress-bar {
    background: #4CAF50;
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* Button Styles */
.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-confirm {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-cancel {
    background: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #4CAF50;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    z-index: 1100;
}

.success-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

/*Actuele data overzicht*/
.wrap table {
  border-collapse: collapse;
  width: 100%;
}
.wrap th {
  background: #eaeaea;
  position: sticky;
  top: 0;
  z-index: 5;
}
.wrap td, .wrap th {
  border: 1px solid #ddd;
  padding: 6px 8px;
}
.wrap tr:nth-child(even) {
  background: #fafafa;
}
.nervo-data-container {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 75vh;       /* beperkt hoogte, horizontaal én verticaal scroll */
    overflow-x: auto;
    overflow-y: auto;
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

.nervo-data-table {
    border-collapse: collapse;
    min-width: 1200px;      /* zodat horizontale scrollbar altijd kan */
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.nervo-data-table th,
.nervo-data-table td {
    border: 1px solid #ddd;
    padding: 6px 8px;
    white-space: nowrap;
    vertical-align: top;
}

.nervo-data-table th {
    background: #f7f7f7;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nervo-data-table tr:nth-child(even) {
    background: #CDC;
}

/* Maak de eerste kolom sticky */
.nervo-data-table th:first-child,
.nervo-data-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 20;
    width: 320px;        
    min-width: 320px;    
    max-width: 320px;    
    box-sizing: border-box;
    overflow: hidden;  
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nervo-data-table th:first-child {
    z-index: 30;
    background: #f7f7f7; 
    font-weight: 600;
}


.nervo-data-table tr:nth-child(even) td:first-child {
    background: #CDC;
}
.nervo-data-table tr:nth-child(odd) td:first-child {
    background: #fff; 

}
