/**
 * Custom CSS Code by Theme User
 *
 * NOTE: This file only work if it's in the theme root directory.
 */

/* =========================================================
   App API Bridge — deTube Theme Integration
   ========================================================= */

/* ---- Auth Modal Overlay (Cinematic Premium) ---- */
.app-modal-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Deep dark backdrop */
    z-index: 999999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* Center the modal */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.app-modal-overlay[style*="none"] {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

.app-modal-box {
    background: #0f0f0f;
    /* OLED Dark */
    color: #f1f1f1;
    width: 400px;
    max-width: 90vw;
    border-radius: 16px;
    /* Soft rounding */
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle premium edge */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 1), 0 0 20px rgba(183, 0, 0, 0.05);
    /* Deep shadow with subtle red glow */
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-modal-overlay[style*="display: block"] .app-modal-box {
    transform: scale(1) translateY(0);
}

.app-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.app-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.app-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Form inside modal */
.app-modal-box .app-form p {
    margin: 0 0 20px;
}

.app-modal-box .app-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #a1a1aa;
    /* slate-400 */
}

.app-modal-box .app-form input[type="text"],
.app-modal-box .app-form input[type="password"],
.app-modal-box .app-form input[type="email"] {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    /* Soft input fill */
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.app-modal-box .app-form input:focus {
    border-color: #b70000;
    background: rgba(183, 0, 0, 0.05);
    /* Tone sur tone highlight */
    outline: none;
    box-shadow: 0 0 0 3px rgba(183, 0, 0, 0.15);
    /* Visible focus ring */
}

.app-modal-box .form-submit {
    margin-top: 30px;
}

.app-modal-box .form-submit .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.app-modal-box .form-submit .btn-black,
.app-modal-box .form-submit .btn-green {
    /* Using brand red for both buttons to maintain tone-sur-tone */
    background: #b70000;
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(183, 0, 0, 0.39);
}

.app-modal-box .form-submit .btn-black:hover,
.app-modal-box .form-submit .btn-green:hover {
    background: #e50000;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(183, 0, 0, 0.45);
}

/* Auth messages inside modal */
.app-modal-box .app-auth-message {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.app-modal-box .app-msg-success {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.app-modal-box .app-msg-error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Switch link */
.app-modal-switch {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin: 30px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle divider */
}

.app-modal-switch a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 6px;
    transition: color 0.2s ease;
}

.app-modal-switch a:hover {
    color: #b70000;
}

/* App API comments — reply indicator */
.app-reply-indicator {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    padding: 6px 10px;
    background: #f5f5f5;
    border-radius: 3px;
}

.app-reply-indicator .app-cancel-reply {
    margin-left: 10px;
    color: #a02020;
    text-decoration: none;
    font-size: 12px;
}

.app-reply-indicator .app-cancel-reply:hover {
    text-decoration: underline;
}

/* App API comments — auth message in comment forms */
[data-app-form="comment"] .app-auth-message {
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size: 13px;
}

[data-app-form="comment"] .app-msg-success {
    background: #ecf7ed;
    color: #1a7a2e;
    border: 1px solid #c3e6cb;
}

[data-app-form="comment"] .app-msg-error {
    background: #fdf0f0;
    color: #a02020;
    border: 1px solid #f5c6cb;
}

/* App API comments — no comments message */
.app-no-comments {
    color: #999;
    font-size: 14px;
    font-style: italic;
    margin: 10px 0;
}

/* App API comments — pagination */
.app-comments-pagination {
    margin: 20px 0;
}

.app-comments-pagination a,
.app-comments-pagination .current {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 2px;
    text-decoration: none;
    font-size: 12px;
}

.app-comments-pagination .current {
    font-weight: bold;
}

/* App API comments — children (replies) */
.comment-list .children .app-comment .comment-inner {
    padding-left: 20px;
}

.comment-list .children .app-comment .comment-avatar img {
    width: 32px;
    height: 32px;
}

/* Community video grid — fits deTube content area */
.app-videos-grid {
    display: grid;
    gap: 20px;
}

.app-cols-1 {
    grid-template-columns: 1fr;
}

.app-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.app-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.app-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.app-video-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.app-video-card a:hover .app-video-title {
    color: #B70000;
}

.app-video-thumb {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
    border-radius: 3px;
}

.app-video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}

.app-video-card a:hover .app-video-thumb img {
    opacity: 0.85;
}

.app-video-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}

.app-video-info {
    padding: 6px 0;
}

.app-video-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.app-video-meta {
    font-size: 11px;
    color: #999;
}

.app-video-author {
    margin-right: 6px;
}

.app-no-videos {
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* Community video pagination */
.app-videos-pagination {
    margin: 20px 0;
    text-align: center;
}

.app-videos-pagination a,
.app-videos-pagination .current {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 2px;
    text-decoration: none;
    font-size: 12px;
}

.app-videos-pagination .current {
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {

    .app-cols-3,
    .app-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .app-cols-2,
    .app-cols-3,
    .app-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* ---- Header Auth Buttons (Liquid Glass Premium) ---- */
#header-actions .btn-login,
#header-actions .btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    height: 34px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    margin-left: 10px;
}

#header-actions .btn-login {
    background: rgba(255, 255, 255, 0.05);
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#header-actions .btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#header-actions .btn-signup {
    background: #b70000;
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(183, 0, 0, 0.3);
}

#header-actions .btn-signup:hover {
    background: #e50000;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(183, 0, 0, 0.5);
}

/* ---- Profile Button (Liquid Glass Pill) ---- */
#account-nav {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    height: 100%;
}

#account-nav .dropdown-handle {
    display: inline-flex;
    align-items: center;
    padding: 2px 12px 2px 4px;
    height: 38px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    cursor: pointer;
}

#account-nav .dropdown-handle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

#account-nav .dropdown-handle .avatar {
    border-radius: 50%;
    margin-right: 8px;
    width: 30px;
    height: 30px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

#account-nav .dropdown-handle .display-name {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    color: inherit;
}

#account-nav .dropdown-handle .mini-arrow-down {
    margin-left: 5px;
    opacity: 0.6;
}

/* Dropdown Menu cinematic style */
#account-nav {
    position: relative;
    display: inline-block;
}

/* Invisible bridge to prevent hover gap */
#account-nav::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 6px;
}

#account-nav .dropdown-content {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.9) !important;
    padding: 8px !important;
    min-width: 180px;
    margin-top: 4px;
    right: 0;
    left: auto;
    position: absolute;
    top: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

#account-nav:hover .dropdown-content,
#account-nav:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#account-nav .dropdown-content-inner {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

#account-nav .dropdown-content-inner li {
    list-style: none !important;
    border-top: none !important;
    border-bottom: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#account-nav .dropdown-content-inner a {
    display: block;
    padding: 10px 14px;
    color: #d4d4d8;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

#account-nav .dropdown-content-inner a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

#account-nav .dropdown-content-inner .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

#account-nav .dropdown-content-inner .logout-link {
    color: #ef4444;
}

#account-nav .dropdown-content-inner .logout-link:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

/* Modal Inputs fixes for new components */
.app-modal-box .app-form input.custom-file-input {
    height: 48px;
    padding: 11px 16px;
    line-height: 24px;
    color: #a1a1aa;
    cursor: pointer;
}

.app-modal-box .app-form input.custom-file-input::file-selector-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    color: #fff;
    margin-right: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.app-modal-box .app-form input.custom-file-input::file-selector-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ── Unified Profile Modal ── */
.app-profile-avatar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}

.app-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.2s;
}

.app-profile-avatar:hover {
    border-color: #10b981;
}

.app-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-profile-avatar svg#app-avatar-default {
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.35);
}

.app-avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 50%;
}

.app-avatar-overlay svg {
    color: #fff;
}

.app-profile-avatar:hover .app-avatar-overlay {
    opacity: 1;
}

.app-avatar-hint {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* ── Video Upload Modal ── */
.app-video-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.app-video-dropzone:hover,
.app-video-dropzone.dragover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.06);
}

.app-dropzone-content svg {
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 10px;
}

.app-dropzone-label {
    color: #d4d4d8;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
}

.app-dropzone-hint {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    margin: 0;
}

.app-dropzone-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.app-dropzone-preview video {
    width: 80px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    background: #000;
}

.app-file-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

#app-file-name {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#app-file-size {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.app-remove-file {
    background: rgba(239, 68, 68, 0.15);
    border: none;
    color: #ef4444;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.app-remove-file:hover {
    background: rgba(239, 68, 68, 0.3);
}

/* Textarea */
.app-modal-box .app-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.app-modal-box .app-form textarea:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.08);
}

.app-modal-box .app-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* ── Upload Progress Bar ── */
.app-upload-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.app-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.app-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 3px;
    transition: width 0.3s ease;
    position: relative;
}

.app-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.app-progress-text {
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    min-width: 32px;
    text-align: right;
}

/* Submit button disabled state */
#app-upload-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Multi-Video Items ── */
.app-video-list {
    margin-bottom: 16px;
}

.app-video-list>label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.app-video-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.app-video-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-mini-dropzone {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    min-height: 44px;
}

.app-mini-dropzone:hover,
.app-mini-dropzone.dragover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.app-vi-ph {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.app-vi-ph svg {
    opacity: 0.5;
}

.app-vi-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.app-vi-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.app-vi-size {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    flex-shrink: 0;
}

.app-vi-rm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.app-vi-rm:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.app-add-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.app-add-video-btn:hover {
    color: #10b981;
    border-color: #10b981;
}

.app-add-video-btn:disabled {
    display: none;
}

/* ── Tag Pills ── */
.app-tag-input-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: text;
    min-height: 40px;
    align-items: center;
}

.app-tag-input-wrap:focus-within {
    border-color: #10b981;
}

.app-tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.app-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px 3px 10px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    color: #10b981;
    font-size: 12px;
    white-space: nowrap;
}

.app-tag-pill span {
    line-height: 1.4;
}

.app-tag-x {
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
}

.app-tag-x:hover {
    color: #ef4444;
}

.app-tag-input {
    border: none !important;
    background: transparent !important;
    outline: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    flex: 1;
    min-width: 100px;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}