/* Admin Dashboard Styles */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background-color: #003366 !important; /* Dark Blue */
    color: white !important;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #34495e;
}

.sidebar-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.sidebar-header p {
    font-size: 14px;
    opacity: 0.8;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 5px;
    position: relative;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-nav a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-nav a:hover {
    background-color: #34495e;
}

.sidebar-nav li.active > a {
    background-color: #3498db;
    color: white;
}

/* Submenu Styles */
.submenu-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

li.has-submenu.open .submenu-icon {
    transform: rotate(180deg);
}

.submenu {
    display: none;
    background-color: #34495e;
    padding-left: 15px;
}

li.has-submenu.open .submenu {
    display: block;
}

.submenu li a {
    padding: 10px 20px 10px 35px;
    font-size: 14px;
}

.submenu li a i {
    font-size: 12px;
}

.submenu li a:hover {
    background-color: #2c3e50;
}

.sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid #34495e;
    display: flex;
    justify-content: space-between;
}

.sidebar-footer a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.sidebar-footer a i {
    margin-right: 5px;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 20px;
    background-color: #f5f5f5;
}

/* Dashboard Cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dashboard-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #2c3e50;
}

.card-content p {
    margin: 0;
    color: #7f8c8d;
    font-size: 14px;
}

/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.header-search {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 8px 15px;
    width: 300px;
}

.header-search i {
    color: #7f8c8d;
    margin-right: 10px;
}

.header-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.notifications {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
}

.notifications i {
    font-size: 18px;
    color: #7f8c8d;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.user-profile {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Dashboard Section Styles */
.dashboard-section {
    margin-bottom: 30px;
}

.dashboard-section h1 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
}

.stat-details h3 {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-change {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.stat-change i {
    margin-right: 5px;
}

.positive {
    color: #2ecc71;
}

.negative {
    color: #e74c3c;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.chart-container h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.mock-chart {
    height: 250px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    opacity: 0.2;
    border-radius: 4px;
}

.recent-activity {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.recent-activity h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.activity-list {
    list-style: none;
}

.activity-list li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
}

.activity-list li:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #7f8c8d;
}

.activity-details p {
    margin-bottom: 5px;
}

.activity-time {
    font-size: 12px;
    color: #7f8c8d;
}

/* Data Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
}

.data-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
}

.data-table tbody tr {
    border-bottom: 1px solid #ecf0f1;
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Section Styles */
.dashboard-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h1 {
    margin: 0;
    font-size: 24px;
    color: #2c3e50;
}

.section-description {
    margin: 10px 0 0 0;
    color: #7f8c8d;
    font-size: 16px;
    max-width: 80%;
}

/* Button Styles */
.btn {
    padding: 10px 15px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn i {
    margin-right: 5px;
}

.primary-btn {
    background-color: #3498db;
    color: white;
}

.primary-btn:hover {
    background-color: #2980b9;
}

.secondary-btn {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.secondary-btn:hover {
    background-color: #bdc3c7;
}

.danger-btn {
    background-color: #e74c3c;
    color: white;
}

.danger-btn:hover {
    background-color: #c0392b;
}

/* Filter Controls Styles */
.filter-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    padding: 8px 15px;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-box i {
    color: #7f8c8d;
    margin-right: 10px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
}

.filter-dropdown select {
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #ecf0f1;
    background-color: white;
    outline: none;
    min-width: 150px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 4px;
    border: 1px solid #ecf0f1;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination-btn:hover:not(.active):not([disabled]) {
    background-color: #ecf0f1;
}

.pagination-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Categories Grid Styles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.category-details {
    padding: 15px;
}

.category-details h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.category-details p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

.category-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.category-actions button {
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.category-actions .edit-btn {
    background-color: #3498db;
    color: white;
}

.category-actions .delete-btn {
    background-color: #e74c3c;
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #2c3e50;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
}

.modal-body {
    padding: 20px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
}

.checkbox-group {
    display: flex;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input {
    margin-right: 5px;
    width: auto;
}

.image-upload-container {
    margin-top: 10px;
}

.image-upload-box {
    border: 2px dashed #ecf0f1;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-upload-box:hover {
    border-color: #3498db;
}

.image-upload-box i {
    font-size: 30px;
}

/* Barcode Styles */
.barcode-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.barcode-settings {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.barcode-preview {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.barcode-sheet {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 15px;
    min-height: 300px;
}

.barcode-item {
    border: 1px dashed #ccc;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.barcode-image {
    margin-bottom: 10px;
}

.barcode-info {
    text-align: center;
    font-size: 12px;
}

.barcode-info p {
    margin: 3px 0;
}

/* Tab Styles */
.tab-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.tab-item.active {
    border-bottom-color: #3498db;
    font-weight: 500;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.completed {
    background-color: #2ecc71;
    color: white;
}

.status-badge.in-progress {
    background-color: #f39c12;
    color: white;
}
    color: #7f8c8d;
    margin-bottom: 10px;
}

.image-upload-box p {
    color: #7f8c8d;
}

.image-upload-box input {
    display: none;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.image-preview {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview .remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: rgba(231, 76, 60, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* Color and Size Options Styles */
.color-options,
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 1px solid #ecf0f1;
}

.color-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.color-option.add-color,
.size-option.add-size {
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

.size-option {
    min-width: 40px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    padding: 0 10px;
}

.size-option.selected {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .dashboard-charts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 70px;
        overflow: visible;
    }

    .sidebar-header h2,
    .sidebar-header p,
    .sidebar-nav a span,
    .sidebar-footer a span {
        display: none;
    }

    .sidebar-nav a {
        justify-content: center;
        padding: 15px;
    }

    .sidebar-nav a i {
        margin-right: 0;
        font-size: 18px;
    }

    .sidebar-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sidebar-footer a i {
        margin-right: 0;
    }

    .main-content {
        margin-left: 70px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .stats-cards,
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .header-search {
        width: 100%;
    }

    .filter-controls {
        flex-direction: column;
    }
}

/* Image Preview Modal Styles */
.image-preview-container {
    position: relative;
    background: white;
    border-radius: 8px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-preview-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.image-preview-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.preview-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.image-preview-info {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.image-preview-info h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

/* Clickable image cursor */
.clickable-image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.clickable-image:hover {
    opacity: 0.8;
}

/* Export Controls Styles */
.export-controls {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.export-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.export-actions .btn {
    font-size: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.selected-count {
    margin-left: auto;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    padding: 8px 12px;
    background: #e9ecef;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .export-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .selected-count {
        margin-left: 0;
        text-align: center;
    }
}

/* Brands Dashboard Styles */
.brands-dashboard-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.brands-dashboard-container .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.brands-dashboard-container .header h1 {
    color: #333;
    font-size: 24px;
    margin: 0;
}

.brands-dashboard-container .action-buttons {
    display: flex;
    gap: 10px;
}

.brands-dashboard-container .btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.brands-dashboard-container .btn-primary {
    background-color: #007bff;
    color: white;
}

.brands-dashboard-container .btn-primary:hover {
    background-color: #0056b3;
}

.brands-dashboard-container .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.brands-dashboard-container .btn-secondary:hover {
    background-color: #545b62;
}

.brands-dashboard-container .controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brands-dashboard-container .records-per-page {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brands-dashboard-container .records-per-page select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.brands-dashboard-container .search-container {
    position: relative;
}

.brands-dashboard-container .search-input {
    padding: 8px 35px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 250px;
}

.brands-dashboard-container .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.brands-dashboard-container .table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}

.brands-dashboard-container table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.brands-dashboard-container th,
.brands-dashboard-container td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.brands-dashboard-container th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.brands-dashboard-container tr:hover {
    background-color: #f8f9fa;
}

.brands-dashboard-container .pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brands-dashboard-container .pagination-info {
    color: #666;
    font-size: 14px;
}

.brands-dashboard-container .pagination-controls {
    display: flex;
    gap: 5px;
}

.brands-dashboard-container .page-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.brands-dashboard-container .page-btn:hover {
    background-color: #f8f9fa;
}

.brands-dashboard-container .page-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.brands-dashboard-container .action-btn {
    padding: 4px 8px;
    margin: 0 2px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}

.brands-dashboard-container .edit-btn {
    background-color: #28a745;
    color: white;
}

.brands-dashboard-container .edit-btn:hover {
    background-color: #218838;
}

.brands-dashboard-container .delete-btn {
    background-color: #dc3545;
    color: white;
}

.brands-dashboard-container .delete-btn:hover {
    background-color: #c82333;
}