/* Import Roboto Condensed from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&display=swap');

:root {
    /* Klickpark brand colors */
    --klickpark-blue: #0064A2;
    --klickpark-dark-blue: #042A4A;
    --klickpark-green: #37D0A6;
    --klickpark-light-green: #89E2CA;
    --klickpark-gray: #909092;
    --klickpark-pink: #FFBEBE;
    --klickpark-headline: #2B84FF;
    --klickpark-accent: #574be2;
    --klickpark-highlight: #d9fd8a;
    
    /* Interface colors */
    --dilo-dark-gray: var(--klickpark-dark-blue);
    --dilo-light-gray: #e0e5ea;
    --dilo-primary: var(--klickpark-blue);
    --dilo-text: #333;
    --dilo-text-light: #777;
    --dilo-border: #eaeaea;
    --dilo-background: #fff;
    --dilo-background-hover: #f8f9fa;
    --dilo-table-bg: #f5f9fd;
    --dilo-table-header-bg: #e9f0f9;
    --dilo-accent-blue: var(--klickpark-blue);
    --dilo-accent-orange: var(--klickpark-green);
    
    /* Badge colors */
    --badge-completed-bg: rgba(55, 208, 166, 0.15);
    --badge-completed-text: #037c5f;
    --badge-open-bg: rgba(0, 100, 162, 0.12);
    --badge-open-text: #0064A2;
    --badge-not-required-bg: rgba(144, 144, 146, 0.15);
    --badge-not-required-text: #505052;
}

/* Base styles */
body {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--dilo-text);
    background-color: #f8f9fc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

/* Login page styles are further down */

.content-wrapper {
    flex: 1;
}

/* Header styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 100, 162, 0.08);
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.03);
}

.header-left {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.brand-text {
    margin-left: 15px;
    font-size: 24px;
    line-height: 1;
}

.brand-name {
    font-weight: 700;
    color: #333;
    letter-spacing: -0.2px;
}

.brand-descriptor {
    font-weight: 300;
    color: #555;
    letter-spacing: 0.2px;
}

.logout-btn {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 500;
    background-color: transparent;
    width: auto;
    overflow: hidden;
}

.logout-btn i {
    font-size: 20px;
    margin-right: 0;
    transition: all 0.25s ease;
}

.logout-btn span {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.25s ease;
    margin-left: 0;
}

.logout-btn:hover {
    background-color: #f5f5f5;
}

.logout-btn:hover i {
    margin-right: 8px;
}

.logout-btn:hover span {
    width: 60px;
    opacity: 1;
    margin-left: 0;
}

/* Page title styles */
.page-title-container {
    text-align: left;
    padding: 45px 30px 25px;
    margin: 0;
    background-color: transparent;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.page-count {
    font-size: 15px;
    font-weight: 400;
    color: #777;
    margin-left: 10px;
    background: rgba(0, 100, 162, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    vertical-align: middle;
}

.section-headline {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    letter-spacing: -0.3px;
    margin: 0 0 0 30px;
    padding: 0;
}

/* Modern navigation menu */
.modern-nav {
    margin: 40px 0 15px 30px;
    position: relative;
}

.modern-nav-inline {
    margin: 0;
    padding: 0;
}

.main-menu {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 15px;
    flex-wrap: wrap;
}

.menu-item {
    position: relative;
}

.menu-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 8px 14px;
    display: block;
    transition: all 0.25s ease;
    position: relative;
    border-radius: 8px;
    white-space: nowrap;
}

.menu-link:hover {
    color: #333;
    background-color: #f5f5f5;
}

.menu-link.active {
    color: #ffffff;
    font-weight: 600;
    background-color: #333;
}

.menu-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #15b5ff;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateX(-50%);
}

.menu-link:hover:after {
    width: 0;
    opacity: 0;
}

.menu-link.active:after {
    width: 0;
    opacity: 0;
}

/* Table description */
.table-description {
    font-size: 14px;
    color: #777;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    padding: 0 15px;
}

/* Search styles */
.simple-search {
    width: 220px;
}

/* Status filter styles */
.status-filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.status-select {
    background-color: #ffffff;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.status-select:hover {
    border-color: #1a1a1a;
}

.status-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 44px;
}

.simple-search input {
    width: 100%;
    height: 44px;
    border-radius: 8px 0 0 8px;
    border: 2px solid #333;
    border-right: none;
    padding: 0 15px;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #ffffff;
    color: #333;
    transition: all 0.2s ease;
}

.simple-search input::placeholder {
    color: #999;
}

.simple-search input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.search-button {
    height: 44px;
    width: 44px;
    background-color: #333;
    color: #ffffff;
    border: 2px solid #333;
    border-left: none;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-button:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

.search-button i {
    font-size: 16px;
}

/* Dropdown styles */
.status-dropdown {
    border: 1px solid var(--dilo-border);
    padding: 8px 15px;
    border-radius: 8px;
    width: 140px;
    height: 44px;
    background-color: #fff;
    display: flex;
    align-items: center;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.2px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.status-dropdown:hover {
    border-color: var(--klickpark-headline);
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(43, 132, 255, 0.1);
    transform: translateY(-1px);
}

.dropdown-toggle::after {
    transition: transform 0.2s ease;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Table styles */
.table {
    margin-top: 0px;
    border-collapse: separate;
    border-spacing: 0 12px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
}

.table th {
    background-color: transparent;
    border: none;
    color: #555;
    font-weight: 600;
    padding: 14px 16px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 100, 162, 0.08);
}

.sortable-header {
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.sortable-header:hover {
    color: #000;
}

.sortable-header i {
    font-size: 14px;
    opacity: 1;
}

.sortable-header .sort-inactive {
    opacity: 0.3;
}

.sortable-header:hover .sort-inactive {
    opacity: 0.6;
}

.table td {
    padding: 16px;
    vertical-align: middle;
    border: none;
    letter-spacing: 0.1px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #fff;
}

.table td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.table td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.table tr {
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    margin-bottom: 10px;
}

tbody tr:nth-child(even) {
    background-color: rgba(249, 250, 251, 0.5);
}

tbody tr:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
    z-index: 1;
    position: relative;
    background-color: #fff;
}

/* Checkbox styles */
.checkbox, .checkbox-all, .task-checkbox {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--dilo-border);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--klickpark-blue);
    transition: all 0.2s ease;
}

.checkbox:hover, .checkbox-all:hover, .task-checkbox:hover {
    border-color: var(--klickpark-blue);
    box-shadow: 0 0 0 2px rgba(0,100,162,0.1);
}

/* Bulk actions */
.bulk-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    padding: 10px 0;
    border-radius: 4px;
    height: 44px;
}

.bulk-status-dropdown {
    display: none;
}

.bulk-actions.visible .bulk-status-dropdown {
    display: block;
}

.bulk-actions-message {
    font-size: 17px;
    color: var(--dilo-dark-gray);
    letter-spacing: 0.2px;
    font-weight: 500;
    margin-right: 10px;
}

.bulk-actions-dropdown {
    position: relative;
}

/* Pagination styles */
.rows-per-page {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

.rows-per-page-label {
    font-size: 16px;
    color: var(--dilo-dark-gray);
    letter-spacing: 0.2px;
    font-weight: 500;
}

.rows-per-page-dropdown {
    border: 1px solid var(--dilo-border);
    padding: 8px 12px;
    border-radius: 4px;
    background-color: var(--dilo-background);
    font-size: 16px;
    min-width: 90px;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.2px;
    cursor: pointer;
}

/* Badge styles */
.badge {
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
}

.badge:before {
    display: none;
}

.badge-completed {
    background-color: rgba(55, 208, 166, 0.12);
    color: #037c5f;
}


.badge-open {
    background-color: rgba(232, 88, 76, 0.12);
    color: #E8584C;
}


.badge-not-required {
    background-color: rgba(144, 144, 146, 0.12);
    color: #505052;
}


tr:hover .badge {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

/* Link styles */
.links-container {
    display: flex;
    align-items: center;
}

.link-group {
    display: flex;
    align-items: center;
    margin-right: 15px;
    flex-wrap: nowrap;
}

.link-group:last-child {
    margin-right: 0;
}

.link-group .separator {
    margin: 0 5px;
    color: #ccc;
}

.sales-link {
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    padding: 3px 10px;
    background-color: #8f9baf;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1px;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-block;
}

.sales-link i {
    margin-right: 3px;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.sales-link.sales-link-usa {
    background-color: #000;
    color: #ffffff;
}

.sales-link.sales-link-usa:hover {
    background-color: #555;
    color: #ffffff;
}

.link-group .sales-link + .sales-link {
    margin-left: 8px;
}

.edit-link {
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    padding: 3px 10px;
    background-color: #37D0A6;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1px;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-block;
}

.edit-link i {
    margin-right: 3px;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.sales-link:hover, .edit-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.sales-link:hover {
    background-color: #778293;
}

.edit-link:hover {
    background-color: #19A989;
}

.sales-link:hover i, .edit-link:hover i {
    transform: translateX(-1px);
}

.changes-btn {
    display: inline-flex;
    align-items: center;
    background-color: #2B84FF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(43, 132, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.changes-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: 0;
}

.changes-btn i {
    margin-right: 8px;
    font-size: 15px;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.changes-btn span {
    position: relative;
    z-index: 1;
}

.changes-btn:hover {
    background-color: #1a76f2;
    box-shadow: 0 4px 10px rgba(43, 132, 255, 0.25);
    transform: translateY(-1px);
    cursor: pointer;
    color: white;
}

.changes-btn:hover:before {
    width: 100%;
}

.changes-btn:hover i {
    transform: rotate(-15deg);
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: #333;
    border: 2px solid #333;
    background-color: #ffffff;
    margin: 0 6px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 15px;
}

.page-link:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.page-item.active .page-link {
    background-color: #333;
    border-color: #333;
    color: white;
}

.page-item.active .page-link:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

.page-item.disabled .page-link {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.superscript {
    font-size: 70%;
    vertical-align: super;
}

.results-info {
    font-size: 16px;
    color: var(--dilo-text-light);
    letter-spacing: 0.2px;
    padding: 8px 0;
}

.total-items strong {
    color: var(--dilo-dark-gray);
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background-color: #ffffff;
    color: #666;
    padding: 24px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #2B84FF;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2B84FF;
    transition: width 0.2s ease;
}

.footer-links a:hover {
    color: #574be2;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-company {
    font-size: 14px;
    letter-spacing: 0.1px;
    color: #777;
}

.heart-icon {
    color: #E8584C;
    font-size: 12px;
    margin: 0 3px;
    animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Dropdown menu styling */
.dropdown-menu {
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    padding: 8px 0;
    animation: dropdown-fade 0.2s ease;
}

@keyframes dropdown-fade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-size: 14px;
    color: var(--dilo-text);
    padding: 9px 16px;
    letter-spacing: 0.1px;
    transition: all 0.15s ease;
    font-weight: 400;
}

.dropdown-item:hover {
    background-color: rgba(0, 100, 162, 0.05);
    color: var(--klickpark-blue);
    padding-left: 18px;
}

/* Login page styles */
.login-page {
    display: flex;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.login-left {
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    padding: 6% 10%;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.login-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.03), rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.03));
}

.login-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 132, 255, 0.02) 0%, rgba(87, 75, 226, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.login-right {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--klickpark-dark-blue) 0%, #031b2e 100%);
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6% 10%;
}

.login-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 132, 255, 0.08) 0%, rgba(4,42,74,0) 60%);
    transform: rotate(-30deg);
}

.login-right::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(43, 132, 255, 0.1) 0%, rgba(4,42,74,0) 60%);
    z-index: 0;
}

.logo-container {
    margin-bottom: 35px;
    z-index: 1;
    display: flex;
    align-items: center;
}

h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--klickpark-headline);
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

p {
    color: #666;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
}

.form-container {
    max-width: 320px;
    width: 100%;
    z-index: 2;
    position: relative;
}

input {
    width: 100%;
    background-color: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 16px;
    color: #333;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

input:focus {
    outline: none;
    border-color: var(--klickpark-headline);
    box-shadow: 0 2px 8px rgba(43, 132, 255, 0.15);
    transform: translateY(-1px);
    background-color: #fff;
}

input::placeholder {
    color: #aaa;
    font-weight: 300;
}

.signin-btn {
    width: 100%;
    background-color: var(--klickpark-headline);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(43, 132, 255, 0.2);
    letter-spacing: 0.3px;
}

.signin-btn:hover {
    background-color: var(--klickpark-accent);
    box-shadow: 0 4px 8px rgba(87, 75, 226, 0.25);
    transform: translateY(-1px);
}

.signin-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.login-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #777;
    z-index: 1;
}

.right-title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.right-title .highlight {
    color: var(--klickpark-highlight);
    font-weight: 600;
}

.right-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.footer-text {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    z-index: 1;
}

/* Details page styles */
.back-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: #15b5ff;
    transform: translateX(-3px);
}

.back-link i {
    margin-right: 8px;
    transition: transform 0.2s ease;
}

.back-link:hover i {
    transform: translateX(-2px);
}

.detail-page-header {
    padding: 40px 30px 35px;
    margin-bottom: 0;
}

.detail-breadcrumb {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.detail-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.detail-meta-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-meta-value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.detail-meta-separator {
    color: #ddd;
    font-size: 18px;
    font-weight: 300;
}

.detail-meta-links {
    display: inline-flex;
    gap: 8px;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.detail-link:hover {
    background-color: #333;
    color: #ffffff;
    border-color: #333;
}

.detail-link i {
    font-size: 14px;
}

.detail-link.detail-link-usa,
.detail-link.detail-link-dark {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.detail-link.detail-link-usa:hover,
.detail-link.detail-link-dark:hover {
    background-color: #555;
    color: #fff;
    border-color: #555;
}

.copy-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    min-width: 36px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 6px;
    border: 2px solid transparent;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-link-btn i {
    font-size: 14px;
}

.copy-link-btn:hover {
    background-color: #333;
    color: #ffffff;
    border-color: #333;
}

.copy-link-btn.copied {
    background-color: #d1e7dd;
    border-color: #198754;
    color: #0f5132;
}

.article-number {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.article-number-label {
    font-size: 15px;
    font-weight: 300;
    color: #666;
    margin-right: 12px;
    width: 80px;
}

.article-number-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.2px;
}

.pim-ids {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.pim-id-container {
    display: flex;
    flex-direction: column;
}

.pim-label {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    margin-bottom: 4px;
}

.pim-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--klickpark-blue);
}

.pim-id-separator {
    width: 1px;
    height: 30px;
    background-color: #e0e0e0;
    margin: 0 20px;
}

.article-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.product-image {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-image {
    width: 100%;
    height: auto;
}

.changes-date-section {
    margin-bottom: 20px;
}

.changes-date-title {
    color: var(--klickpark-blue);
    font-weight: 700;
    padding: 3px 16px;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.attribute-name {
    font-weight: 500;
    color: var(--klickpark-dark-blue);
    font-size: 15px;
    letter-spacing: 0.1px;
}

.language-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    overflow: hidden;
    vertical-align: middle;
}

.flag-icon {
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.multi-flag {
    font-size: 10px;
    font-weight: 600;
    color: var(--klickpark-blue);
    padding: 2px 5px;
    background-color: #f5f9fd;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.change-value {
    max-width: 700px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.change-value ul {
    margin: 0;
    padding-left: 20px;
}

.change-value pre {
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 14px;
    border: 1px solid #eee;
    margin-top: 5px;
    margin-bottom: 5px;
}

.modification-date {
    white-space: nowrap;
    color: var(--dilo-text-light);
    font-size: 14px;
}

.table-responsive {
    overflow-x: auto;
}

/* Expandable content */
.expand-btn {
    background: none;
    border: none;
    color: var(--klickpark-blue);
    cursor: pointer;
    padding: 5px 10px;
    font-size: 13px;
    text-decoration: none;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.expand-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.expand-btn.expanded i {
    transform: rotate(180deg);
}

.expand-btn:hover {
    background-color: rgba(0, 100, 162, 0.05);
    color: var(--klickpark-headline);
    border: 1px solid rgba(0, 100, 162, 0.1);
}

.truncated-content {
    position: relative;
}

.full-content {
    display: none;
}

.full-content.show {
    display: block;
}

/* Content types */
.content-key {
    background-color: rgba(0, 100, 162, 0.05);
    border-left: 3px solid rgba(0, 100, 162, 0.3);
}

.content-description {
    background-color: rgba(43, 132, 255, 0.05);
    border-left: 3px solid rgba(43, 132, 255, 0.3);
}

.content-technical {
    background-color: rgba(55, 208, 166, 0.05);
    border-left: 3px solid rgba(55, 208, 166, 0.3);
}

.content-meta {
    background-color: rgba(87, 75, 226, 0.05);
    border-left: 3px solid rgba(87, 75, 226, 0.3);
}

.content-images {
    background-color: rgba(217, 253, 138, 0.1);
    border-left: 3px solid rgba(217, 253, 138, 0.4);
}

/* Select all changes */
.select-all-container {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 10px;
    padding-left: 16px;
}

.select-all-label {
    margin-left: 8px;
    font-weight: 400;
    color: var(--dilo-dark-gray);
}

.batch-actions {
    margin-left: auto;
}

.batch-btn {
    background-color: #2B84FF;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    letter-spacing: 0.2px;
}

.batch-btn:hover {
    background-color: #574be2;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.batch-btn i {
    transition: transform 0.2s ease;
    margin-right: 6px;
}

.batch-btn:hover i {
    transform: scale(1.1);
}

.batch-btn.batch-btn-success {
    background-color: #037c5f;
}

.batch-btn.batch-btn-success:hover {
    background-color: #025a46;
    box-shadow: 0 3px 6px rgba(3, 124, 95, 0.25);
}

.batch-btn.batch-btn-danger {
    background-color: #dc3545;
}

.batch-btn.batch-btn-danger:hover {
    background-color: #c82333;
    box-shadow: 0 3px 6px rgba(220, 53, 69, 0.25);
}

/* Image gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    border: 1px solid #f0f0f0;
}

.gallery-item-overlay {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.gallery-item-overlay a {
    font-size: 12px;
    color: var(--klickpark-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
    padding: 3px 0;
}

.gallery-item-overlay a:before {
    content: "\F4FA";
    font-family: 'bootstrap-icons';
    font-size: 13px;
    margin-right: 4px;
}

.gallery-item-overlay a:hover {
    color: var(--klickpark-accent);
}

/* Accessibility */
.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Touch-friendly improvements */
.touch-friendly {
    min-height: 44px;
    min-width: 44px;
    padding: 12px !important;
}

/* Responsive styles */
@media (max-width: 992px) {
    /* Keep header elements aligned properly on smaller screens */
    .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    /* Adjust header menu for smaller screens */
    .header-menu {
        margin-left: 0;
        margin-top: 10px;
    }
    .header-left {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .title {
        margin-top: 10px;
        font-size: 22px;
    }
    
    .nav-tabs {
        margin-left: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        width: calc(100% - 20px);
    }
    
    .table th, .table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .search-container input {
        width: 180px;
    }
    
    .links-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 6px;
        width: 100%;
    }
    
    .link-group {
        margin-bottom: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        margin-right: 0;
    }
    
    .link-group .separator {
        display: none;
    }
    
    .sales-link, .edit-link {
        width: 100%;
        text-align: center;
    }
    
    .bulk-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bulk-actions-dropdown {
        margin-top: 8px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .table th:nth-child(3), 
    .table td:nth-child(3) {
        display: none;
    }
    
    .product-header {
        flex-direction: column;
    }
    
    .product-image {
        width: 100%;
        margin-top: 20px;
    }
    
    .preview-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    
    .login-left, .login-right {
        width: 100%;
    }
    
    .login-left {
        height: 100%;
        padding: 60px 20px;
    }
    
    .login-right {
        display: none;
    }
    
    .form-container {
        max-width: 100%;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .right-title {
        font-size: 28px;
    }
    
    .right-subtitle {
        font-size: 16px;
    }
    
    .container-fluid {
        padding: 0 10px;
    }
    
    .row.mt-4 {
        flex-direction: column;
    }
    
    .col-md-4.d-flex.justify-content-center {
        justify-content: flex-start !important;
        margin: 10px 0;
    }
    
    .col-md-4, .col-md-6 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .bulk-actions {
        margin-bottom: 10px;
    }
    
    .col-md-6:last-child {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-container {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .search-container input {
        width: 100%;
    }
    
    .status-dropdown {
        width: 100%;
    }
    
    .table {
        display: block;
        overflow-x: auto;
    }
    
    .badge {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .changes-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .pagination .page-link {
        width: 30px;
        height: 30px;
        margin: 0 2px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .table-responsive {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .batch-actions {
        display: flex;
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }
    
    .batch-btn {
        flex: 1;
        margin-left: 5px;
        margin-right: 5px;
        white-space: nowrap;
    }
    
    .select-all-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logout-btn {
        margin-top: 15px;
        align-self: flex-end;
    }
    
    .nav-link {
        padding: 10px;
        font-size: 16px;
    }
    
    .rows-per-page {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rows-per-page-dropdown {
        margin-top: 5px;
    }
    
    .d-flex.justify-content-between.align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .pagination {
        margin-top: 15px;
    }
    
    /* Make the table more mobile-friendly */
    .table-responsive {
        border: 0;
    }
    
    .table, .table thead, .table tbody, .table th, .table td, .table tr {
        display: block;
    }
    
    .table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .table tr {
        border: 1px solid var(--dilo-border);
        margin-bottom: 15px;
        border-radius: 6px;
        background-color: white;
    }
    
    .table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 45%;
        white-space: normal;
        text-align: left;
    }
    
    .table td:last-child {
        border-bottom: 0;
    }
    
    .table td:before {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 40%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        content: attr(data-title);
    }
    
    /* Special handling for checkbox column */
    .table td:first-child {
        text-align: right;
        padding-left: 15px;
    }
    
    /* Special handling for links column */
    .link-group {
        margin-bottom: 5px;
    }
    
    /* Adjust badges on mobile */
    .badge {
        display: inline-block;
        width: auto;
    }
}

@media (max-width: 480px) {
    /* Extreme small screens */
    .title {
        font-size: 18px !important;
    }
    
    .search-container input {
        font-size: 16px;
    }
    
    .table td {
        padding-left: 50%;
    }
    
    .footer-company {
        font-size: 12px;
    }
}

/* Header right section and user name styles */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.user-name {
    font-size: 1rem;
    color: var(--klickpark-dark-blue);
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-right: 15px;
}

/* Logo link style */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Header menu styles */
.header-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu li {
    margin: 0 15px;
}

.header-menu a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.header-menu a:hover,
.header-menu a.active {
    color: #15b5ff;
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #15b5ff;
    transition: width 0.3s ease;
}

.header-menu a:hover::after,
.header-menu a.active::after {
    width: 100%;
}

.header-menu a.active {
    font-weight: 600;
}

/* Statistik Dashboard Karten */
.stat-card {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    border: none;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.stat-card:nth-child(1) {
    background: #1a1a1a;
}

.stat-card:nth-child(2) {
    background: #2a2a2a;
}

.stat-card:nth-child(3) {
    background: #3a3a3a;
}

.stat-info-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 6px;
    z-index: 10;
}

.stat-info-btn:hover {
    color: #15b5ff;
}

.stat-info-btn:focus {
    outline: 2px solid #15b5ff;
    outline-offset: 2px;
    border-radius: 8px;
}

.stat-card-inner {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    flex: 1;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.05);
}

.bg-primary-light {
    background: linear-gradient(135deg, rgba(21, 181, 255, 0.2) 0%, rgba(21, 181, 255, 0.15) 100%);
    color: #15b5ff;
}

.bg-success-light {
    background: linear-gradient(135deg, rgba(55, 208, 166, 0.2) 0%, rgba(55, 208, 166, 0.15) 100%);
    color: #37d0a6;
}

.bg-info-light {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.2) 0%, rgba(13, 202, 240, 0.15) 100%);
    color: #0dcaf0;
}

.bg-warning-light {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.15) 100%);
    color: #ffc107;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    display: block;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.stat-footer {
    padding: 16px 24px;
    border-top: none;
    background: rgba(0,0,0,0.2);
}

.stat-change {
    font-size: 13px;
    font-weight: 600;
}

.stat-up {
    color: #19A989;
}

.stat-down {
    color: #dc3545;
}

.stat-info {
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
}

/* New comparison layout styles */
.change-preview {
    position: relative;
}

.preview-line {
    font-size: 14px;
    line-height: 1.4;
    color: #495057;
    margin-bottom: 8px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.old-preview {
    background-color: #fff5f5;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.new-preview {
    background-color: #f0fff4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.comparison-section {
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin-top: 8px;
}

.old-value-section, .new-value-section {
    margin-bottom: 16px;
}

.old-value-section:last-child, .new-value-section:last-child {
    margin-bottom: 0;
}

.old-value-section strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-value-section strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-content {
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.old-value-section .value-content {
    border-left: 3px solid #dc3545;
    background-color: #fff5f5;
}

.new-value-section .value-content {
    border-left: 3px solid #28a745;
    background-color: #f0fff4;
}

/* Grouped table enhancements */
.changes-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.total-changes {
    font-weight: 600;
    color: var(--dilo-text);
    font-size: 0.9rem;
}

.changes-summary small {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
}

.languages-list {
    font-size: 0.85rem;
    color: var(--dilo-text);
    font-weight: 500;
    background-color: var(--dilo-light-gray);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Completed row styling */
tr.completed {
    background-color: rgba(55, 208, 166, 0.05);
    border-left: 3px solid var(--badge-completed-text);
}

tr.completed td {
    opacity: 0.85;
}

/* Responsive table adjustments for new columns */
@media (max-width: 768px) {
    .changes-summary {
        font-size: 0.8rem;
    }

    .changes-summary small {
        font-size: 0.7rem;
    }

    .languages-list {
        font-size: 0.75rem;
        padding: 1px 4px;
    }
}

/* Utility Classes - Badge Styles */
.badge-status {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: white;
    display: inline-block;
}

.badge-pending {
    background-color: #ff9800;
}

.badge-completed {
    background-color: #4caf50;
}

.badge-deleted {
    background-color: #f44336;
}

.badge-neutral {
    background-color: #9e9e9e;
}

/* Table Column Width Utilities */
.th-width-5 {
    width: 5%;
}

.th-width-10 {
    width: 10%;
}

.th-width-15 {
    width: 15%;
}

.th-width-20 {
    width: 20%;
}

.th-width-25 {
    width: 25%;
}

.th-width-30 {
    width: 30%;
}

.th-width-40 {
    width: 40px;
}

.th-width-60 {
    width: 60%;
}

.th-width-80 {
    width: 80px;
}

/* Spacing Utilities */
.mt-40 {
    margin-top: 40px;
}

/* Icon Styles */
.note-icon {
    color: #0069aa;
}

/* Documentation Page Styles */
.doc-header {
    margin-bottom: 40px;
    padding: 30px 0;
}

.doc-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-title i {
    color: #0069aa;
}

.doc-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.doc-sidebar {
    position: sticky;
    top: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.doc-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-nav li {
    margin-bottom: 8px;
}

.doc-nav a {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.doc-nav a:hover {
    background-color: #f0f8ff;
    color: #0069aa;
    padding-left: 16px;
}

.doc-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.doc-section {
    margin-bottom: 50px;
}

.doc-section:last-child {
    margin-bottom: 0;
}

.doc-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.doc-section-title i {
    color: #0069aa;
}

.doc-subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin-top: 25px;
    margin-bottom: 15px;
}

.doc-section p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.doc-list {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.doc-list li {
    margin-bottom: 10px;
}

.doc-list ul {
    margin-top: 8px;
}

.doc-callout {
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.doc-callout i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.doc-callout-info {
    background-color: #e8f4f8;
    border-left: 4px solid #0069aa;
    color: #004d73;
}

.doc-callout-info i {
    color: #0069aa;
}

.doc-callout-success {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.doc-callout-success i {
    color: #4caf50;
}

.doc-callout-warning {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    color: #e65100;
}

.doc-callout-warning i {
    color: #ff9800;
}

.doc-stat-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.doc-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.doc-stat-icon-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.doc-stat-icon-info {
    background: linear-gradient(135deg, #17ead9 0%, #6078ea 100%);
}

.doc-stat-icon-success {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.doc-stat-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.doc-stat-content p {
    margin-bottom: 10px;
}

.doc-example {
    background: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #0069aa;
    margin-top: 15px;
    font-style: italic;
}

.doc-example i {
    color: #0069aa;
    margin-right: 5px;
}

@media (max-width: 991px) {
    .doc-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .doc-content {
        padding: 25px;
    }

    .doc-title {
        font-size: 2rem;
    }

    .doc-section-title {
        font-size: 1.5rem;
    }
}
