.admin-menu {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.admin-menu h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2em;
}

.admin-menu-list {
    list-style: none;
    padding: 0;
}

.admin-menu-item {
    margin-bottom: 10px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.admin-menu-link:hover {
    background-color: #f5f5f5;
}

.admin-menu-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

/* Icon colors */
.icon-add { color: #2563eb; }
.icon-remove { color: #dc2626; }
.icon-manage { color: #4b5563; }

.login-message {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.login-message p {
    margin-bottom: 15px;
    color: #495057;
    font-weight: 500;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.login-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: white;
}