/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Sidebar Styling for Admin */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1rem;
}

.sidebar .nav-link.active {
    color: #0d6efd;
}

.sidebar .nav-link:hover {
    color: #0d6efd;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

/* Admin Content Area */
main.col-md-9 {
    padding-top: 48px;
}

/* Card styling */
.card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Rating stars */
.rating .fa-star {
    color: #ccc;
}

.rating .fa-star.text-warning {
    color: #ffc107;
}

/* Category Badge */
.badge {
    padding: 6px 10px;
    font-weight: 500;
}

/* Dashboard card styling */
.border-left-primary {
    border-left: 4px solid #4e73df;
}

.border-left-success {
    border-left: 4px solid #1cc88a;
}

.border-left-info {
    border-left: 4px solid #36b9cc;
}

/* Custom button styling */
.btn-custom {
    padding: 8px 16px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        top: 5rem;
    }
}

/* Public site specific */
.reputation-item {
    transition: transform 0.2s;
}

.reputation-item:hover {
    transform: translateY(-5px);
}

.category-tag {
    background-color: #e9ecef;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Footer styling */
footer {
    margin-top: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
} 