.checkin-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
}

.client-selection,
.cleaning-selection {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.client-selection h2,
.cleaning-selection h2 {
    margin-bottom: 16px;
    color: #333;
    font-size: 1.5rem;
}

.client-select,
.cleaning-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
}

.client-select:disabled,
.cleaning-select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.action-btn {
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.action-btn i {
    font-size: 1.2rem;
}

.check-in {
    background-color: #4CAF50;
    color: white;
}

.check-in:hover:not(:disabled) {
    background-color: #45a049;
}

.safe {
    background-color: #2196F3;
    color: white;
}

.safe:hover:not(:disabled) {
    background-color: #1976D2;
}

.check-out {
    background-color: #FF9800;
    color: white;
}

.check-out:hover:not(:disabled) {
    background-color: #F57C00;
}

.next-house {
    background-color: #9C27B0;
    color: white;
}

.next-house:hover:not(:disabled) {
    background-color: #7B1FA2;
}

.end-work {
    background-color: #f44336;
    color: white;
}

.end-work:hover:not(:disabled) {
    background-color: #d32f2f;
}

.status-display {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.current-status, .time-display {
    text-align: center;
}

.current-status h3, .time-display h3 {
    margin-bottom: 8px;
    color: #666;
    font-size: 1.1rem;
}

#statusText, #timeText {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 32px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    margin-bottom: 24px;
    color: #333;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 24px;
}

.submit-btn,
.cancel-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
}

.submit-btn:hover {
    background-color: #45a049;
}

.cancel-btn {
    background-color: #f44336;
    color: white;
}

.cancel-btn:hover {
    background-color: #d32f2f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkin-container {
        padding: 16px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .status-display {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 24px;
    }
} 