/* assets/css/dashboard.css */

/* Additional styling for dashboard sections */

.admin-section, .user-section, .support-section {
    padding: 15px;
    background-color: #2c2c2c;
    border-radius: 6px;
	margin-top: 10px;
}

.admin-section h2, .user-section h2, .support-section h2 {
    color: #ffffff;
}

.admin-section ul li a, .user-section ul li a {
    font-size: 18px;
}

.admin-section ul li a:hover, .user-section ul li a:hover {
    color: #03dac6;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table thead {
    background-color: #3a3a3a;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #555555;
}

table tr:nth-child(even) {
    background-color: #2c2c2c;
}

table tr:hover {
    background-color: #1e1e1e;
}