@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* ListingHub Theme Variables */
:root {
    --primary-color: #C71F37;
    /* Primary Red */
    --accent-red: #C71F37;
    --sidebar-bg: #23262A;
    /* Dark Sidebar */
    --header-bg: #212529;
    /* Dark Header */
    --content-bg: #F8F9FA;
    /* Light Content Background */
    --card-bg: #FFFFFF;
    --text-primary: #2B2B2B;
    --text-muted: #64748B;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --border-radius: 10px;
    --sidebar-width: 280px;
    --font-family: 'Jost', sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--content-bg);
    color: var(--text-primary);
    font-size: 15px;
    overflow-x: hidden;
}

.landing-wrapper {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* --- Sidebar (ListingHub Dark Style) --- */
.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    color: #ffffff;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding-top: 20px;
}

.sidebar-profile {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.sidebar-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    object-fit: cover;
}

.sidebar-profile .welcome-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}

.sidebar-profile .user-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-menu {
    list-style: none;
    padding: 0 15px;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-menu li a i {
    font-size: 18px;
    width: 25px;
    margin-right: 15px;
}

.sidebar-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-menu li a.active {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(199, 31, 55, 0.3);
}

/* --- Header / Top Nav --- */
.top-header {
    height: 72px;
    background: var(--header-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: var(--sidebar-width);
    right: 0;
    z-index: 999;
}

.top-header .app-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.top-header .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-add-listing {
    background: var(--accent-red);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: 0.3s;
}

.btn-add-listing:hover {
    background: #a51a2d;
    transform: translateY(-2px);
}

/* --- Main Content --- */
.content {
    margin-left: var(--sidebar-width);
    padding: 102px 40px 40px;
    /* Top padding considers fixed header */
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* --- ListingHub Dashboard Cards --- */
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    border: 1px solid #f1f1f1;
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-card-info {
    text-align: right;
}

.stat-card-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.stat-card-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

/* --- ListingHub Alert --- */
.skydo-alert {
    background: #FFF5F6;
    border-left: 4px solid var(--accent-red);
    padding: 15px 25px;
    border-radius: 8px;
    color: var(--accent-red);
    font-weight: 500;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Tables & Lists --- */
.dashboard-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
    height: 100%;
}

.dashboard-box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 15px;
}

.dashboard-box-title h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* Utilities */
.text-red {
    color: var(--accent-red);
}

.bg-red-light {
    background: rgba(199, 31, 55, 0.1);
    color: var(--accent-red);
}

.bg-blue-light {
    background: rgba(54, 185, 204, 0.1);
    color: var(--info-color);
}

.bg-orange-light {
    background: rgba(246, 194, 62, 0.1);
    color: var(--warning-color);
}

.bg-green-light {
    background: rgba(28, 200, 138, 0.1);
    color: var(--success-color);
}

/* --- Landing Page Overhaul --- */
.hero-section {
    position: relative;
    padding: 160px 0 120px;
    background: url('../img/marketplace_hero_bg.png') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(33, 37, 41, 0.8) 0%, rgba(33, 37, 41, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-search-bar {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 40px auto 0;
    max-width: 800px;
}

.hero-search-input {
    border: none;
    border-right: 1px solid #eee;
    padding: 10px 25px;
    flex: 1;
    font-size: 16px;
    outline: none;
    color: #333;
}

.hero-search-input:last-of-type {
    border-right: none;
}

.hero-btn-search {
    background: var(--accent-red);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 10px;
    transition: 0.3s;
}

.hero-btn-search:hover {
    background: #a51a2d;
    transform: scale(1.05);
}

/* Categories Section */
.section-padding {
    padding: 100px 0;
}

.category-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #f1f1f1;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-red);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-count {
    font-size: 13px;
    color: var(--text-muted);
    background: #f8f9fa;
    padding: 3px 12px;
    border-radius: 20px;
}

/* Listing Cards */
.listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f1f1;
    transition: 0.3s;
    height: 100%;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.listing-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.listing-card:hover .listing-image img {
    transform: scale(1.1);
}

.listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.listing-body {
    padding: 20px;
}

.listing-vendor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.listing-vendor img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--accent-red);
    color: #fff;
    padding: 80px 0;
}

.newsletter-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    max-width: 600px;
    margin: 30px auto 0;
}

.newsletter-input {
    border: none;
    flex: 1;
    padding: 0 20px;
    outline: none;
    color: #333;
}

.footer-main {
    background: #1a1d21;
    color: #adb5bd;
    padding: 80px 0 40px;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

/* Auth Pages (ListingHub Style) */
.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF0F2;
    /* Light Pink/Peach background */
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.auth-container::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(199, 31, 55, 0.05);
    bottom: -100px;
    left: -100px;
}

.auth-container::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(199, 31, 55, 0.05);
    top: -50px;
    right: -50px;
}

.auth-box {
    width: 100%;
    max-width: 500px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
    text-align: center;
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #2B2B2B;
}

.auth-logo-wrap {
    width: 70px;
    height: 70px;
    background: var(--accent-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 15px rgba(199, 31, 55, 0.2);
}

.auth-label {
    display: block;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
    font-family: var(--font-family);
}

.auth-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: 0.3s;
    font-family: var(--font-family);
}

.auth-input:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(199, 31, 55, 0.05);
}

.auth-btn-submit {
    background: var(--accent-red);
    color: #fff;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.auth-btn-submit:hover {
    background: #a51a2d;
    transform: translateY(-2px);
}

.auth-footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-link-red {
    color: var(--accent-red);
    font-weight: 600;
}

.auth-link-red:hover {
    text-decoration: underline;
}

.auth-divider {
    margin: 40px 0;
    position: relative;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
}

.auth-social-btns {
    display: flex;
    gap: 15px;
}

.auth-social-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.auth-social-btn:hover {
    background: #f8f9fa;
    border-color: #ccc;
    transform: translateY(-1px);
}

/* --- Single Listing Details ( ListingHub Accurate Style ) --- */
.listing-hero {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: -72px;
}

.listing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.listing-details-header {
    background: transparent !important;
    border-bottom: none !important;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-logo {
    width: 80px;
    height: 80px;
    background: #FFC107;
    /* Yellow from screenshot */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #000;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-badge {
    color: #28a745;
    font-size: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta i {
    color: #fff;
}

.hero-right {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 30px;
}

.price-range-info {
    text-align: left;
}

.price-range-info small {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.price-range-info h4 {
    font-weight: 700;
    margin: 0;
}

.btn-send-message {
    background: #fff;
    color: var(--accent-red);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-send-message:hover {
    background: var(--accent-red);
    color: #fff;
}

/* Sub Nav with Icons - Spaced Left to Right */
.listing-nav-bar {
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 72px;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.listing-nav-links {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.listing-nav-links li {
    flex: 1;
    text-align: center;
}

.listing-nav-links li a {
    padding: 22px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    color: #64748b;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    font-size: 14px;
    transition: 0.3s;
}

.listing-nav-links li a i {
    font-size: 15px;
    opacity: 0.7;
}

.listing-nav-links li a:hover,
.listing-nav-links li a.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.listing-nav-links li a:hover i,
.listing-nav-links li a.active i {
    opacity: 1;
    color: var(--primary-color);
}

/* Accuracy for sidebar host card */
.host-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.host-card-header {
    height: 120px;
    background: linear-gradient(45deg, #FF3D67, #3D8BFF, #BC3DFF);
    /* Colorful gradient from screenshot */
    background-size: cover;
    position: relative;
}

.host-card-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    margin: -45px auto 0;
    position: relative;
    z-index: 2;
    object-fit: cover;
    display: block;
}

.host-card-body {
    padding: 20px;
}

.host-card-body small {
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.host-card-body h5 {
    font-weight: 700;
    margin: 0;
}

/* Listing Description adjustments */
.listing-content-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

.section-toggle-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 30px;
    height: 30px;
    background: #fff0f2;
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Pricing Menu */
.pricing-menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

.pricing-item-info h6 {
    margin: 0;
    font-weight: 700;
}

.pricing-item-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.pricing-item-price {
    font-weight: 800;
    color: var(--accent-red);
    font-size: 18px;
}

/* Amenities Grid */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.amenity-item i {
    color: var(--success-color);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.listing-booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-field label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.booking-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    outline: none;
}

.btn-book-now {
    background: var(--accent-red);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-book-now:hover {
    background: #a51a2d;
    box-shadow: 0 8px 15px rgba(199, 31, 55, 0.2);
}

/* Opening Hours */
.opening-hours {
    list-style: none;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 14px;
}

.opening-hours li:last-child {
    border-bottom: none;
}

.opening-hours li .day {
    font-weight: 600;
}

.opening-hours li .time {
    color: var(--text-muted);
}

.opening-hours li.today {
    color: var(--accent-red);
}

/* Gallery Grid */
.listing-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-img {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews */
.review-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f1f1;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.review-content h6 {
    margin-bottom: 5px;
    font-weight: 700;
}

.review-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.review-rating {
    color: #f1c40f;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* QR Code Widget */
.qr-code-widget {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f8f9fa;
    margin-bottom: 30px;
}

.qr-code-container {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.qr-code-container img {
    max-width: 150px;
    height: auto;
}

.qr-code-text {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

@media (max-width: 991px) {
    .listing-hero {
        padding: 150px 0 60px;
    }

    .hero-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-right {
        text-align: left;
        margin-top: 30px;
    }
}

/* ------------------------
   QR Scanner Styling 
   ------------------------ */
.scan-card {
    transition: transform 0.3s ease;
}

#reader {
    border: none !important;
}

#reader__scan_region {
    background: #f8fafc;
    border-radius: 12px;
}

#reader__dashboard_section_csr button {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

#reader__dashboard_section_csr button:hover {
    background-color: #a51a2d !important;
    transform: translateY(-2px);
}

#reader__dashboard_section_swaplink {
    text-decoration: none !important;
    color: #64748b !important;
    font-size: 13px !important;
    border: 1px solid #eee !important;
    padding: 5px 15px !important;
    border-radius: 20px !important;
    display: inline-block;
    margin-top: 15px;
}

.scan-result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.verified-animation {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 20px;
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}