* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f2f5;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

input[type="text"],
input[type="time"],
input[type="date"] {
    width: 100%;
    padding: 15px;
    font-size: 1.5rem;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.days-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.days-selector label {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

input[type="checkbox"] {
    width: 25px;
    height: 25px;
}

.btn-large {
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    font-size: 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #2980b9;
}

.medications-list {
    margin-top: 3rem;
}

.medication-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.medication-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.medication-card p {
    font-size: 1.4rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.status {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 0;
}

.status.active {
    background-color: #2ecc71;
    color: white;
}

.status.inactive {
    background-color: #e74c3c;
    color: white;
}

.delete-btn {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.delete-btn:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .days-selector {
        grid-template-columns: repeat(2, 1fr);
    }
} 