/* GLOBAL FONTS FOR TRADE KNOCK */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* The "Clean Corporate" choice (Great for data/tables) */
    --font-primary-inter: 'Inter', sans-serif;

    /* The "Technical & Precise" choice (Great for analytics) */
    --font-data-manrope: 'Manrope', sans-serif;

    /* The "Premium Tech" choice (Great for marketing/headlines) */
    --font-brand-jakarta: 'Plus Jakarta Sans', sans-serif;

    /* The "Minimalist Luxury" choice (Great for profiles/nav) */
    --font-sleek-outfit: 'Outfit', sans-serif;

    /* --- THE MASTER SWITCH --- */
    /* Change this variable to switch the font everywhere instantly */
    --tk-main-font: var(--font-sleek-outfit);
}

/* 1. Reset high-level elements */
html, body {
    font-family: var(--tk-main-font) !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* 2. Force inheritance on all interactive components */
*, *::before, *::after {
    box-sizing: border-box !important;
}

button, 
input, 
optgroup, 
select, 
textarea {
    font-family: var(--tk-main-font) !important;
}

/* 3. Specific weights for that "fine" professional look */
h1, h2, h3, .tk-action-title, .tk-main-name {
    font-weight: 600 !important; /* Semi-bold for titles */
    letter-spacing: -0.02em !important;
}

p, .tk-action-desc, .tk-label {
    font-weight: 400 !important; /* Clean weight for body text */
}

/* GLOBAL FONTS FOR TRADE KNOCK END */

.card {
  border-radius: 0px;
}  
.card-body {
  padding: 0 1.25rem 1.25rem 1.25rem;
}
#btnSignup, #btnSignin {
  width: 100%;
}
.red-link:hover {
  color: #ed1e24;
}

/* Grid Wrapper for Alignment */
.tk-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
    gap: 20px;
    margin-top: 20px;
}

/* The Dotted Box */
.upload-box {
    border: 2px dotted #cccccc;
    background-color: #fafafa;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

/* Hover State: Red Dotted Border */
.upload-box:hover {
    border-color: var(--tk-red);
    background-color: #fff8f8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(237, 30, 36, 0.05);
}

/* Label Styling */
.form-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--tk-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Style the File Input Button */
input[type="file"]::file-selector-button {
    background-color: var(--tk-dark);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 10px;
    transition: 0.3s;
}

input[type="file"]::file-selector-button:hover {
    background-color: #ed1e24;
}

/* Utility Classes */
.full-width {
    grid-column: span 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tk-upload-grid {
        grid-template-columns: 1fr; /* 1 box per row on small screens */
    }
    .full-width {
        grid-column: span 1;
    }
}

/* Ensure the plugin takes up the full width of your form */
.iti {
    width: 100% !important;
    display: block !important;
}

/* Fix the border-radius to match your other Bootstrap inputs */
.iti__selected-flag {
    border-radius: 6px 0 0 6px !important;
    background-color: rgba(0, 0, 0, 0.02);
}

/* Style the dial code (+92) to look professional */
.iti__selected-dial-code {
    font-weight: 600;
    margin-left: 6px;
    color: #2d2d2d;
}

/* Highlight the active field with your brand color on focus */
#phone:focus {
    border-color: #ed1e24 !important;
    box-shadow: 0 0 0 0.2rem rgba(237, 30, 36, 0.15) !important;
}

/* User Account Type */

.tk-type-card {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.tk-type-card i {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.tk-type-card span {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #444;
}

/* Hover & Active States */
.tk-type-card:hover {
    border-color: #ed1e2455;
    background-color: #fffafa;
}

.tk-type-card.active {
    border-color: #ed1e24;
    background-color: #fffafa;
    box-shadow: 0 4px 15px rgba(237, 30, 36, 0.15);
}

.tk-type-card.active i {
    color: #ed1e24;
}

.border-dotted {
    border-radius: 10px;
    padding: 15px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Gender */

/* Unified Card Style for both Gender and Account Type */
.tk-type-card, .tk-gender-btn {
    border: 1.5px solid #dee2e6;
    border-radius: 10px;
    padding: 18px 5px; /* Matched exactly */
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.tk-gender-group {
    margin-bottom: 10px;
}

/* Icon Size Sync */
.tk-type-card i, .tk-gender-btn i {
    font-size: 20px; /* Precise sync */
    color: #888;
    margin-bottom: 8px;
}

/* Text Style Sync */
.tk-type-card span, .tk-gender-btn span {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    display: block;
    text-transform: uppercase;
}

/* Hover Effect Sync */
.tk-type-card:hover:not(.active), 
.tk-gender-btn:hover:not(.active) {
    border-color: #ed1e2455;
    background-color: #fffafa;
    transform: translateY(-2px); /* Slight lift for "billion-dollar" feel */
}

/* Active/Selected State Sync */
.tk-type-card.active, .tk-gender-btn.active {
    border-color: #ed1e24;
    background-color: #ed1e24;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(237, 30, 36, 0.1);
}

.tk-type-card.active i, .tk-gender-btn.active i,
.tk-type-card.active span, .tk-gender-btn.active span {
    color: #fff; /* White text/icon on Red background */
}

/* CSS for password fields */
.tk-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.tk-password-input {
    padding-right: 45px; /* Leave space for the icon */
    height: 48px;
    border-radius: 8px;
}

.tk-password-toggle {
    position: absolute;
    right: 15%;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
    outline: none !important;
}

.tk-password-toggle:hover {
    color: #ed1e24; /* TradeKnock Red on hover */
}

/* Focused input style */
.tk-password-input:focus {
    border-color: #ed1e24;
    box-shadow: 0 0 0 0.2rem rgba(237, 30, 36, 0.1);
}

/* Container for all inputs to ensure alignment */
.tk-input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

/* Generic styling for ALL text-based inputs */
.tk-input-group .form-control, 
.tk-password-input {
    height: 52px; /* Uniform height */
    border-radius: 12px !important; /* Premium rounded corners */
    border: 1.5px solid #dee2e6;
    padding-left: 45px; /* Space for the ICON on the LEFT */
    padding-right: 15px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: none;
}

/* Icons positioned inside the fields on the LEFT */
.tk-input-group i.tk-field-icon {
    position: absolute;
    left: 15px;
    color: #888;
    font-size: 18px;
    z-index: 10;
    transition: color 0.3s ease;
}

/* Focus State: The "Glow" */
.tk-input-group .form-control:focus {
    border-color: #ed1e24; /* TradeKnock Red */
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(237, 30, 36, 0.08);
}

.tk-input-group .form-control:focus + i.tk-field-icon {
    color: #ed1e24;
}

/* Style for the Eye Button (RIGHT side) */
.tk-password-toggle {
    position: absolute;
    right: 10%;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    z-index: 11;
}

/* Container must take full width to match other fields */
.iti {
    width: 100%;
    display: block;
}

/* Force the phone input to match your generic style */
#phone {
    height: 52px !important;
    border-radius: 12px !important;
    border: 1.5px solid #dee2e6 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    /* We don't use left padding here; the plugin handles it based on flag size */
}

/* Ensure the flag dropdown matches your rounded aesthetic */
.iti__country-list {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    padding: 10px;
    z-index: 100;
}

/* Style the selected flag/country code area */
.iti__selected-flag {
    border-radius: 10px 0 0 10px !important;
    padding-left: 15px !important;
    background-color: transparent !important;
}

/* Focus state for the phone field */
#phone:focus {
    border-color: #ed1e24 !important;
    box-shadow: 0 0 0 4px rgba(237, 30, 36, 0.08) !important;
    outline: none;
}

/* Hover effect on the flag picker */
.iti__flag-container:hover .iti__selected-flag {
    background-color: #fff8f8 !important;
}

/* Feedback icon inside the input */
.tk-feedback-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    z-index: 5;
    pointer-events: none; /* Prevents icon from blocking clicks */
}

/* Adjust for password fields so it doesn't hit the "Eye" button */
.tk-password-input ~ .tk-feedback-icon {
    right: 45px;
}

/* Colors */
.text-danger { color: #ed1e24 !important; }
.text-success { color: #28a745 !important; }

/* Smooth transitions for color changes */
.form-control {
    transition: border-color 0.3s ease, background-color 0.3s ease !important;
}

/* Ensure the text doesn't overlap icons on either side */
.tk-password-input {
    padding-left: 45px !important;  /* Space for Lock icon */
    padding-right: 75px !important; /* Extra space for BOTH Eye and Feedback checkmark */
}

/* Position for the Start Icon */
.tk-field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    z-index: 10;
}

/* Position for the Eye Toggle */
.tk-password-toggle {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #888;
    z-index: 11;
    cursor: pointer;
}

/* Position for the Validation Feedback Icon (Check/X) */
/* We move it further left so it doesn't sit on top of the eye */
.tk-input-group .tk-feedback-icon {
    position: absolute;
    right: 15px; 
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Disabled state for the Submit Button */
#btnSignup {
    transition: all 0.3s ease;
    cursor: not-allowed;
    opacity: 0.5;
    filter: grayscale(0.5);
}

/* Active state */
#btnSignup.active {
    opacity: 1;
    filter: grayscale(0);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(237, 30, 36, 0.3);
}

/* 3-Column Grid Layout */
.tk-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 per row */
    gap: 12px;
    margin-top: 15px;
}

/* Base Card Style */
.tk-continent-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* HOVER STATE: Border #ed1e2455, BG #fffafa, Lift Up */
.tk-continent-card:hover {
    border-color: #ed1e2455;
    background-color: #fffafa;
    transform: translateY(-2px); /* Lifts the box up */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ACTIVE STATE: Complete Brand Red Background */
.tk-continent-card.active {
    background-color: #ed1e24 !important; /* Brand Red */
    border-color: #ed1e24 !important;
    transform: translateY(-2px); /* Stays lifted when active */
    box-shadow: 0 6px 15px rgba(237, 30, 36, 0.25);
}

/* Icon & Text Colors */
.tk-continent-card i {
    font-size: 26px;
    margin-bottom: 8px;
    color: #495057; /* Default gray */
    transition: color 0.3s ease;
}

.tk-continent-card span {
    font-size: 12px;
    font-weight: 700;
    color: #212529; /* Default dark */
    text-transform: uppercase;
}

/* Flip colors to White when Active */
.tk-continent-card.active i, 
.tk-continent-card.active span {
    color: #ffffff !important;
}

/* Responsive: 2 per row on small phones */
@media (max-width: 480px) {
    .tk-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Container Logic */
.tk-social-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Custom Select Architecture */
.tk-custom-select-wrapper {
    position: relative;
    width: 180px;
    z-index: 1;
}

.tk-select-trigger {
    height: 50px;
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    font-weight: 700;
    gap: 12px;
    transition: all 0.3s;
}

.tk-select-trigger:hover { border-color: #ed1e24; }

.tk-select-options {
    position: absolute;
    top: 55px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: none; /* Controlled by JS */
    overflow: hidden;
    border: 1px solid #eee;
}

.tk-option {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.tk-option:hover { background: #fff5f5; color: #ed1e24; }
.tk-option i { width: 20px; text-align: center; }

/* The Identity Badge (The Global Standard Look) */
#social_preview_container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tk-social-badge {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-width: 240px;
    position: relative;
}

.social-pfp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.remove-social {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ed1e24;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

.tk-social-badge:hover .remove-social { opacity: 1; top: 5px; right: 5px; }

/* 1. Main Row Layout */
.tk-social-input-group {
    display: flex;
    align-items: flex-start; /* Keeps items aligned to top */
    gap: 10px;
    width: 100%;
}

/* 2. Dropdown Component (Matches Input Height) */
.tk-custom-select-wrapper {
    position: relative;
    min-width: 160px;
    flex-shrink: 0;
}

.tk-select-trigger {
    height: 50px; /* Fixed height for consistency */
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    font-weight: 600;
    gap: 10px;
}

/* 3. The URL Input Field */
.tk-social-input-group .tk-input {
    flex-grow: 1; /* Takes up remaining space */
    height: 50px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
}

.tk-social-input-group .tk-input:focus {
    border-color: #ed1e24;
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 30, 36, 0.1);
}

/* 4. The Plus Button */
.tk-add-btn {
    height: 50px;
    width: 55px;
    background: #ed1e24;
    color: #fff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.tk-add-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

.tk-add-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* 5. Validation Feedback */
.url-invalid {
    border-color: #ed1e24 !important;
    background-color: #fff8f8 !important;
}

/* Customized CSS for fieldflash and popup */

/* 1. Subtle Button Transformation */
.tk-btn-success {
    background: #222 !important; /* Elegant Dark instead of Green */
    cursor: default;
    border-color: transparent !important;
}

/* 2. Branded Popup - Minimalist Design */
.tk-swal-container {
    padding: 2rem !important;
    border-radius: 12px !important;
    border: 1px solid #eee !important;
}

.tk-swal-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111 !important;
    padding-top: 10px !important;
}

.tk-swal-content {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6 !important;
}

.tk-swal-confirm-btn {
    background: transparent !important;
    color: #ed1e24 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 40px !important;
    border-radius: 6px !important;
    transition: 0.3s !important;
}

.tk-swal-confirm-btn:hover {
    background: #ed1e24 !important;
    color: #fff !important;
    border-color: #ed1e24 !important;
}

/* 3. The Identity Flash Effect */
.tk-flash-active {
    transition: all 0.5s ease;
    border-color: #ed1e24 !important;
    box-shadow: 0 0 8px rgba(237, 30, 36, 0.15) !important;
}

/* Cover image */
/* Media Composer Layout */
.tk-media-composer {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 80px; /* Space for the overlapping PFP */
}

/* Cover Photo */
.tk-cover-wrapper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    background-color: #f0f0f0;
    overflow: visible;
    border: 1px solid #eee;
}

.tk-upload-label.cover-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: #222;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
}

.tk-upload-label.cover-btn:hover {
    background: #ed1e24;
    color: #fff;
}

/* Profile Picture Circle */
.tk-pfp-wrapper {
    position: absolute;
    bottom: -60px;
    left: 30px;
    z-index: 5;
}

.tk-pfp-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #fff;
    background: #eee;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tk-pfp-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pfp-edit-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #ed1e24;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid #fff;
    font-size: 12px;
    transition: 0.3s;
}

.pfp-edit-btn:hover {
    transform: scale(1.1);
    background: #222;
}

/* Username suggestions label */

.tk-sug-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid #ed1e24;
    color: #6c757d;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 50px;
    margin-right: 8px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tk-sug-badge:hover {
    background: #ed1e24;
    color: #ffffff;
    border-color: #ed1e24;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Business Categories Field */

.tk-search-dropdown {
    position: absolute;
    z-index: 1000;
    background: #fff;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
}

.tk-search-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #f8f9fa;
}

.tk-search-item:hover {
    background-color: #f0f7ff;
    color: #ed1e24;
}

.tk-tag {
    background: linear-gradient(135deg, #eb6165, #ed1e24);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 4px;
    display: flex;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.tk-tag i {
    margin-left: 8px;
    cursor: pointer;
    font-size: 11px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smart Sensing Location */

/* Trade Knock - Smart Sensing Alert Styling */
.tk-smart-sensing-alert {
    background: rgba(255, 255, 255, 0.05); /* Subtle glass transparency */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 30, 36, 0.15); /* Faded brand color border */
    border-left: 4px solid #ed1e24; /* Solid brand color accent */
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tk-smart-sensing-alert:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.tk-alert-icon {
    font-size: 1.25rem;
    color: #ed1e24; /* Brand Red */
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.tk-alert-content {
    font-size: 0.85rem;
    color: #6c757d; /* Muted text for professional look */
    line-height: 1.5;
}

.tk-alert-content strong {
    color: #2d2d2d; /* Darker for emphasis */
    font-weight: 700;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* For Dark Mode Dashboards */
[data-theme="dark"] .tk-alert-content strong {
    color: #ffffff;
}
[data-theme="dark"] .tk-alert-content {
    color: #b0b0b0;
}