
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fce4ec; 
    color: #4a4a4a;
    margin: 0;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.logo-header { margin-bottom: 20px; padding-top: 20px; text-align: center; }
.app-logo { max-width: 250px; height: auto; }


#notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.notification {
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: fadeInOut 3s forwards;
    opacity: 0;
}

.notification.success { background-color: #4CAF50; }
.notification.error { background-color: #c2185b; }

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-20px) translateX(-50%); }
    10% { opacity: 1; transform: translateY(0) translateX(-50%); }
    90% { opacity: 1; transform: translateY(0) translateX(-50%); }
    100% { opacity: 0; transform: translateY(-20px) translateX(-50%); }
}


.calendar-container {
    max-width: 700px;
    width: 90%; 
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    display: block;
}

#calendar-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; grid-column: 1 / 8; }
#calendar-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; font-size: 1.2em; font-weight: 600; color: #3949ab; }
#calendar-controls button { background: none; border: none; font-size: 1.5em; cursor: pointer; color: #3949ab; padding: 0 5px; }
#calendar-days-grid div:nth-child(-n+7) { font-weight: bold; color: #3949ab; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; text-align: center; }

.day { padding: 10px 5px; border: 1px solid #e0e0e0; border-radius: 8px; cursor: pointer; font-weight: 600; transition: all 0.2s ease-in-out; }
.day.selected { background-color: #3949ab; color: #fff; }
.unavailable { background-color: #e0e0e0; color: #999; border: 1px dashed #c0c0c0; cursor: not-allowed; }



#appointment-form, #cancellation-form, .dashboard-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 0;
    max-width: 500px;
    width: 90%; 
    text-align: left;
}

#appointment-form h2, #cancellation-form h2 { color: #c2185b; border-bottom: 2px solid #ffcdd2; padding-bottom: 10px; font-weight: 600; }


#cancel-move-controls {
    display: flex;
    justify-content: center; 
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 50px; 
}

.whatsapp-button {
    background-color: #25D366; 
    color: white !important; 
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none !important;
    transition: background-color 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.whatsapp-button:hover { background-color: #128C7E; }


#schedule-form label, #cancel-form label { display: block; margin-bottom: 5px; font-weight: 600; margin-top: 15px; }

#schedule-form input, #schedule-form select, #cancel-form input {
    display: block; 
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

#schedule-form button, #cancel-form button, .toggle-button {
    background-color: #c2185b;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%; 
    transition: background-color 0.2s;
}


.dashboard-container { max-width: 900px; width: 95%; padding: 30px; }



.dashboard-container { max-width: 900px; width: 95%; padding: 30px; }

#appointments-table th, #appointments-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
    font-size: 0.9em;
}

#appointments-table th { background-color: #ffe0b2; color: #4a4a4a; font-weight: bold; }

.whatsapp-button {
    background-color: #25D366; 
    color: white !important; 
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none !important; 
    transition: background-color 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.whatsapp-button:hover {
    background-color: #128C7E; 
}

.seña-notice {
    background-color: #fff3cd; 
    border: 1px solid #ffda79;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.seña-notice p {
    margin: 5px 0;
    font-size: 0.95em;
}

.seña-notice strong {
    color: #e91e63; 
}


.seña-whatsapp-button {
    background-color: #25D366; 
    color: white !important;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.seña-whatsapp-button:hover {
    background-color: #128C7E;
}



#cancel-move-controls {
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    width: 100%;
    max-width: 500px;
    margin-bottom: 50px;
}

.whatsapp-button, .instagram-button {
    
    flex-grow: 1; 
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    color: white !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s;
}

.whatsapp-button {
    background-color: #25D366; 
}
.whatsapp-button:hover {
    background-color: #128C7E;
}

.instagram-button {
    background: #E1306C; 
}
.instagram-button:hover {
    background: #C135A2; 
}