body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.user-info {
    text-align: right;
}

.logout {
    display: inline-block;
    margin-left: 10px;
    color: #d9534f;
    text-decoration: none;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.office-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.office-card.open {
    border-left: 5px solid #5cb85c;
}

.office-card.closed {
    border-left: 5px solid #d9534f;
}

.status {
    margin: 15px 0;
    font-size: 1.2em;
}

.details {
    margin: 15px 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background: #337ab7;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #286090;
}

.error {
    color: #d9534f;
    padding: 10px;
    margin-bottom: 15px;
    background: #f2dede;
    border-radius: 4px;
}

.success {
    color: #3c763d;
    padding: 10px;
    margin-bottom: 15px;
    background: #dff0d8;
    border-radius: 4px;
}
/* Add to your existing CSS */
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}

select:focus {
    outline: none;
    border-color: #337ab7;
}

/* Make the dropdown match your form style */
.form-group select {
    margin-bottom: 15px;
}