body {
    font-family: 'Figtree', sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Main Container */
.tiktok-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Left Sidebar Navigation */
.left-sidebar {
    width: 240px;
    background: #000;
    padding: 20px 0;
    border-right: 1px solid #333;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
    position: relative;
}

.sidebar-brand {
    padding: 0 20px 30px 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.sidebar-brand h3 {
    color: #ff0050;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

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

.nav-item {
    margin: 0;
}

.text-muted {
    color: #ffffff;
    ;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 0, 80, 0.1);
    color: #ff0050;
}

.nav-link i {
    width: 24px;
    margin-right: 12px;
    font-size: 18px;
}

.nav-link .nav-text {
    flex: 1;
}

.nav-link .nav-count {
    background: #ff0050;
    color: #fff;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
}

/* Following Section */
.following-section {
    margin-top: 30px;
    padding: 0 20px;
}

.following-title {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.following-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.following-item:hover {
    color: #ff0050;
}

.following-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.following-name {
    font-weight: 500;
    font-size: 14px;
}

/* Main Content Area */
.main-content {
    flex: 1;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.main-content::-webkit-scrollbar {
    display: none;
}

.video-snap-container {
    scroll-snap-type: y mandatory !important;
    overflow-y: scroll !important;
}

/* Video Container */
.video-item {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 400px;
    background: #111;
    border-radius: 8px;
    /* overflow: hidden; */
}

.video-media {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    z-index: 2;
}

.vehicle-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.vehicle-meta {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
}

.vehicle-company {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.company-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.company-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.vehicle-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-sm-custom {
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* Right Action Panel */
.right-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    right: -53px;
    bottom: 0;
    transform: translateY(-50%);
}

.action-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.action-btn:hover {
    background: #ff0050;
}

.action-btn i {
    font-size: 18px;
}

.action-count {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #ccc;
    font-weight: 600;
}

/* User Profile Section in Sidebar */
.user-profile {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.profile-item {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.profile-role {
    font-size: 12px;
    color: #888;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 20px;
    z-index: 120;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: #fff;
    border-radius: 8px;
    /* width: 48px; */
    /* height: 48px; */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 0, 80, 0.8);
}

.mobile-search-toggle {
    width: 240px;

    display: none;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 130;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: #fff;
    border-radius: 8px;
    /* width: 48px; */
    /* height: 48px; */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mobile-search-toggle:hover {
    background: rgba(255, 0, 80, 0.8);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    backdrop-filter: blur(5px);
}

.search-header-group {
    margin-top: 12px;
}

.search-filter-section-wrapper .offcanvas-body {
    padding: 0;
}

.upload-container {
    padding: 0 8px;
}

.features span {
    padding-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .upload-container {
        padding: 20px;
    }

    .left-sidebar {
        position: fixed;
        top: 0;
        left: 0;
    }

    .view-toggles-small-screen {
        display: inline-block !important;
        position: fixed;
        top: 11px;
        right: 17px;
    }

    .view-toggles-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .left-sidebar {
        width: 280px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 180;
    }

    .left-sidebar.show {
        transform: translateX(0);
    }

    .mobile-overlay.show {
        display: block;
    }

    .main-content {
        width: 100vw;
        margin-top: 54px;
    }

    /* Move toggle button when sidebar is open */
    .left-sidebar.show~.mobile-toggle {
        z-index: 200;
        left: 300px;
    }

    .right-actions {
        right: 5px;
    }

    .right-actions .action-btn {
        background: transparent;
        backdrop-filter: none;
    }

    .right-actions .action-count {
        color: #fff;
        bottom: -8px;
    }

    .comments-panel {
        width: 100% !important;
        height: 55vh !important;
        bottom: 0 !important;
        top: auto !important;
        border-radius: 20px 20px 0 0 !important;
    }

    .mobile-search-toggle {
        display: flex;
    }

    .chat-input-wrapper {
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
        right: 0;
    }

    .chat-messages {
        padding-bottom: 119px !important;
        padding-top: 60px !important;
    }

    .chat-header-wrapper {
        position: fixed;
        top: 48px;
        width: 100%;
        left: 0;
        right: 0;
        z-index: 99;
    }

    .video-overlay {
        bottom: 42px;
    }

    .right-actions {
        bottom: 80px;
    }

    .video-media {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }

}

.search-filter-section {
    display: none;
    position: fixed;
    top: 0;
    right: 11px;
    width: 300px;
    height: 100vh;
    background: #000;
    z-index: 140;
    padding: 20px 0 20px;
    overflow-y: auto;
}

.search-filter-section.show {
    display: block;
}

.search-filter-section .vehicle-card {
    background: transparent;
    border: none;
    padding: 0 !important;
    box-shadow: none;
}

.close-search-btn {
    position: absolute;
    top: 9px;
    right: 13px;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Comment Panel Styles */
.comments-panel {
    position: fixed;
    top: 0;
    right: -431px;
    width: 400px;
    height: 100vh;
    background: #161823;
    border-left: 1px solid #333;
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.comments-panel.show {
    right: 0;
}

.comments-header {
    padding: 0px 19px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comments-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: inline-block;
}

.comments-count {
    color: #8a8b9b;
    font-size: 14px;
}

.close-comments-btn {
    background: none;
    border: none;
    color: #8a8b9b;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-comments-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.comments-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.comment-item {
    padding: 8px 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-author {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.comment-text {
    color: #e1e1e6;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #8a8b9b;
}

.comment-time {
    color: #8a8b9b;
}

.comment-reply {
    color: #8a8b9b;
    cursor: pointer;
    transition: color 0.3s ease;
}

.comment-reply:hover {
    color: #fff;
}

.comment-likes {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.comment-likes:hover {
    color: #ff0050;
}

.comment-likes.liked {
    color: #ff0050;
}

.comments-footer {
    padding: 0px 13px;
    border-top: 1px solid #333;
}

.comment-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-input {
    flex: 1;
    background: #2f2f3e;
    border: 1px solid #444;
    border-radius: 20px;
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.comment-input:focus {
    border-color: #ff0050;
}

.comment-input::placeholder {
    color: #8a8b9b;
}

.send-comment-btn {
    background: #ff0050;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-comment-btn:hover {
    background: #e6004a;
    transform: scale(1.05);
}

.send-comment-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}

.login-to-comment {
    text-align: center;
    padding: 12px 20px;
    color: #8a8b9b;
}

.login-to-comment-btn {
    color: #ff0050;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.3s ease;
    text-decoration: none;
}



.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #8a8b9b;
}

.no-comments i {
    font-size: 2rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.comments-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.comments-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cancel-reply-btn {
    width: 28px;
    height: 28px;
    background: #666;
    margin-left: 2px;
    margin-right: 10px;
}

/****************************/
/****************************/
/********* Home css *********/
/****************************/
/****************************/

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

.more-details.show {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

.more-details.hide {
    animation: slideUp 0.3s ease-out;
}

.more-btn:hover {
    color: #fff !important;
}

.more-icon.rotated {
    transform: rotate(180deg);
}

/* PREMIUM DESIGN SYSTEM - FRONTEND MODULE */
.premium-card {
    background: #111;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.bg-gradient-dark {
    background: linear-gradient(145deg, #161616, #000);
}

.section-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: #ff0050;
    border-radius: 4px;
}

.section-title-small {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Form Elements */
.form-label-modern {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.form-control-modern,
.form-select-modern {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: 12px 18px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    width: 100%;
}

.form-control-modern:focus,
.form-select-modern:focus {
    border-color: #ff0050 !important;
    background: #222 !important;
    box-shadow: 0 0 0 4px rgba(255, 0, 80, 0.15) !important;
    transform: translateY(-2px);
}

.t-area {
    min-height: 160px;
}

/* Features Styling */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.feature-item {
    margin-bottom: 0;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.feature-checkbox:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.checkmark {
    width: 22px;
    height: 22px;
    background: #222;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    margin-right: 12px;
    position: relative;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-checkbox input {
    display: none;
}

.feature-checkbox input:checked~.checkmark {
    background: #ff0050;
    border-color: #ff0050;
    transform: scale(1.1);
}

.feature-checkbox input:checked~.checkmark::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.label-text {
    font-size: 0.9rem;
    color: #bbb;
    font-weight: 500;
}

.feature-checkbox input:checked~.label-text {
    color: #fff;
    font-weight: 700;
}

/* Upload Styling */
.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.upload-zone:hover {
    border-color: #ff0050;
    background: rgba(255, 0, 80, 0.03);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.file-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.hover-scale {
    transition: transform 0.2s;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.text-danger-custom {
    color: #ff0050;
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 600;
}

/* Profile Page Styles */
.profile-tabs {
    border-bottom-color: #131313 !important;
}

.profile-tabs .nav-link {
    color: #9a9a9a;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.profile-tabs .nav-link i {
    margin-right: 0;
}

.profile-tabs .nav-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.profile-tabs .nav-link.active span {
    color: #fff;
    border-bottom-color: #fff;
    border-bottom: 1px solid #fff !important;
}

.bg-gradient-to-t-black {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Profile Dropdown Styling */
.dropdown-menu-dark .dropdown-item {
    color: #9a9a9a;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: all 0.2s;
}

.dropdown-menu-dark .dropdown-item:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    background-color: #ff0050;
    color: #fff;
}

.profile-tabs .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 8px;
    color: #9a9a9a;
}

.profile-tabs .nav-link.active .dropdown-toggle::after {
    color: #fff;
}

/* Lightbox Styling */
.image-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.image-lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    cursor: default;
}

.image-lightbox-container img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    margin: auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.close-lightbox:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ff0050;
    transform: rotate(90deg);
}

.user-profile-images {
    cursor: zoom-in;
}

/* Share Modal Styles */
.share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.share-overlay.show {
    opacity: 1;
    visibility: visible;
}

.share-panel {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background: #161823;
    border-radius: 12px 12px 0 0;
    z-index: 2003;
    transition: bottom 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);
}

.share-panel.show {
    bottom: 0;
}

.share-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.share-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.close-share-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
}

.share-body {
    padding: 24px 20px;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    transition: transform 0.2s ease;
}

.share-option:hover {
    transform: translateY(-2px);
}

.share-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.share-icon-wrapper.whatsapp {
    background: #25D366;
}

.share-icon-wrapper.facebook {
    background: #1877F2;
}

.share-icon-wrapper.x-twitter {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-icon-wrapper.telegram {
    background: #0088cc;
}

.share-icon-wrapper.linkedin {
    background: #0077b5;
}

.share-icon-wrapper.copy {
    background: rgba(255, 255, 255, 0.1);
}

.share-icon-wrapper.embed {
    background: rgba(255, 255, 255, 0.1);
}

.share-name {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-align: center;
}

.share-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
}

.copy-input-group {
    display: flex;
    gap: 8px;
}

.copy-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.copy-btn-inline {
    background: #ff0050;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

#vehicleImageCarousel,
#vehicleImageCarousel .carousel-item {
    height: 697px;
    overflow: hidden;
}

#vehicleImageCarousel .carousel-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    margin: auto;
}

@media (min-width: 769px) {

    #vehicleImageCarousel,
    #vehicleImageCarousel .carousel-item {
        height: 334px;
    }

    .share-panel {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 12px;
        width: 400px;
        opacity: 0;
        visibility: hidden;
    }

    .share-panel.show {
        bottom: auto;
        opacity: 1;
        visibility: visible;
    }
}