/* Estilos para el sistema de recordatorios */
.recordatorios-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.recordatorios-container h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.recordatorios-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recordatorio {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.recordatorio.completado {
    opacity: 0.7;
    background: #e9ecef;
}

.recordatorio.completado .recordatorio-contenido h4 {
    text-decoration: line-through;
}

.recordatorio-contenido {
    flex: 1;
}

.recordatorio-contenido h4 {
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.recordatorio-contenido p {
    color: #6c757d;
    margin: 0 0 10px 0;
}

.recordatorio-fecha {
    font-size: 0.9em;
    color: #6c757d;
}

.recordatorio-fecha i {
    margin-right: 5px;
    margin-left: 15px;
}

.recordatorio-acciones {
    display: flex;
    gap: 10px;
}

.btn-completar,
.btn-eliminar {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-completar {
    color: #28a745;
}

.btn-completar:hover {
    background: #28a745;
    color: white;
}

.btn-eliminar {
    color: #dc3545;
}

.btn-eliminar:hover {
    background: #dc3545;
    color: white;
}

.btn-completar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Estilos para el botón de nuevo recordatorio */
.btn-nuevo-recordatorio {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto;
    transition: all 0.3s ease;
}

.btn-nuevo-recordatorio:hover {
    background: #0056b3;
}

/* Estilos para el modal de nuevo recordatorio */
.modal-recordatorio {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-contenido {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}

.modal-contenido h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.form-grupo {
    margin-bottom: 15px;
}

.form-grupo label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

.form-grupo input,
.form-grupo textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-grupo textarea {
    height: 100px;
    resize: vertical;
}

.form-acciones {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-guardar,
.btn-cancelar {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-guardar {
    background: #28a745;
    color: white;
}

.btn-guardar:hover {
    background: #218838;
}

.btn-cancelar {
    background: #6c757d;
    color: white;
}

.btn-cancelar:hover {
    background: #5a6268;
}

/* Responsive */
@media (max-width: 768px) {
    .recordatorio {
        flex-direction: column;
        gap: 10px;
    }

    .recordatorio-acciones {
        width: 100%;
        justify-content: flex-end;
    }

    .modal-contenido {
        width: 95%;
        padding: 20px;
    }
} 