:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --danger-color: #e74c3c;
    --text-color: #2c3e50;
    --light-gray: #ecf0f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
    padding: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="date"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.date-inputs {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.date-inputs input {
    flex: 1;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    margin-right: 1rem;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary:hover {
    background-color: #27ae60;
}

.day-entry {
    background-color: var(--light-gray);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.remove-day {
    background-color: var(--danger-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.remove-day:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .date-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .date-inputs span {
        text-align: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
}

.fixed-logo {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1000;
    width: 180px;
    height: auto;
    background: transparent;
    pointer-events: none;
}
@media print {
    .fixed-logo {
        display: block !important;
        position: fixed;
        top: 20px;
        right: 30px;
        width: 180px;
        background: transparent;
    }
}