/* Global Styles */

.logo {
  max-height: 50px;
  height: auto;
}

/* === General Layout === */
body {
    background-color: #f8f9fc;
    font-family: 'Arial', sans-serif;
	color: #2c3e50;
}
.container.account-container {
    padding: 40px 0;
}

/* === Sidebar Styling === */
.account-sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.account-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}
.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.account-menu li {
    margin-bottom: 10px;
}
.account-menu a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}
.account-menu a i {
    margin-right: 10px;
}
.account-menu a:hover, .account-menu a.active {
    background-color: #6f42c1;
    color: white;
}
.logout a {
    color: red;
}

/* === Dashboard Styling === */
.dashboard-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.dashboard-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* === Alerts & Messages === */
/*.alert {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 5px;
    color: #31708f;
}*/

/* === Settings Button === */
.btn-sm {
    padding: 5px 12px;
    font-size: 14px;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .account-sidebar {
        margin-bottom: 20px;
    }
}
