/* public/app/css/pote-styles.css */

.pote-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pote-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pote-card h3 {
    margin-top: 0;
    color: #6a11cb;
    border-bottom: 2px solid #6a11cb;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.pote-card p {
    margin: 5px 0;
}

.ayuda-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.ayuda-link:hover {
    background-color: #c0392b;
}

.message-card {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message-card ion-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.message-card p {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0;
}

/* General Modal Content Styles (for PC and Mobile) */
#pote-modal .modal-content {
    background-color: #f0f2f5;
    margin: auto;
    padding: 20px;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-height: 90vh; /* Apply max-height for PC */
    overflow-y: auto; /* Enable scrolling for PC */
}

/* Mobile Specific Styles */
@media (max-width: 600px) {
    #pote-modal .modal-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%; /* Full height on mobile */
        border-radius: 15px; /* Apply border-radius on mobile */
    }

    #pote-modal .pote-container {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* Scrollbar Styles for PC */
#pote-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

#pote-modal .modal-content::-webkit-scrollbar-track {
    background: #f0f2f5;
    border-radius: 10px;
}

#pote-modal .modal-content::-webkit-scrollbar-thumb {
    background-color: #6a11cb;
    border-radius: 10px;
    border: 2px solid #f0f2f5;
}

/* Estilos para las etiquetas de día */
.today-label, .tomorrow-label, .weekday-label {
    font-weight: bold;
}

.today-label {
    color: #2ecc71; /* Verde */
}

.tomorrow-label {
    color: #e67e22; /* Naranja */
}

.weekday-label {
    color: #3498db; /* Azul */
}
