* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
}

.logo,.vlogo {
    display: inline-block;
}
.logo::before {
    content: '';
    display: block;
    width: 7.5em;
    height: 2.8em;
    background: url('../assets/imgs/logo-w.svg') no-repeat center / contain;
}
.logo.black::before {
    background: url('../assets/imgs/logo-b.svg') no-repeat center / contain;
}
.vlogo::before {
    content: '';
    display: block;
    width: 7em;
    height: 7em;
    background: url('../assets/imgs/vlogo-w.svg') no-repeat center / contain;
}
.vlogo.black::before {
    background: url('../assets/imgs/vlogo-b.svg') no-repeat center / contain;
}

input, select, textarea {
    font-size: 1rem;
    line-height: 1.5;
}

select {
    appearance: base-select;
    position: relative;
    background: var(--gray-100);
    background-image: none;
    border: 1px solid var(--gray-200);
    padding: 8px 32px 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

select::-webkit-details-marker,
select::marker {
    display: none;
    content: '';
}

select::picker-icon {
    content: '‹';
    font-size: 1.5rem;
    line-height: 1rem;
    color: var(--gray-500);
    transition: transform 0.2s;
    transform: rotate(90deg);
}
select:open::picker-icon {
    transform: rotate(-90deg);
}

select:hover {
    border-color: var(--gray-300);
    background-color: var(--gray-50);
}

select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

::picker(select) {
    appearance: base-select;
    border: none;
    border-radius: 10px;
    padding: 6px;
    background: var(--gray-100);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    animation: picker-open 0.15s ease-out;
}

::picker(select)::-webkit-details-marker {
    display: none;
}

::picker(select)::marker {
    content: '';
}
option { border-radius: 6px; }
::picker(select) option {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: background 0.15s;
    cursor: pointer;
    border-radius: 5px;
}

::picker(select) option:hover {
    background: var(--primary-100);
    color: var(--primary-700);
}

::picker(select) option:checked {
    background: var(--primary-500);
    color: #fff;
}

@keyframes picker-open {
    from { opacity: 0; transform: translateY(-4px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

button {
    cursor: pointer;
    transition: all 0.25s ease;
}

[ico]::before {
    font-family: 'Material Icons';
    content: attr(ico);
    font-size: inherit;
    vertical-align: middle;
    line-height: 1;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.text-primary-600 { color: var(--primary-600); }
.text-primary-800 { color: var(--primary-800); }
.text-primary-500 { color: var(--primary-500); }

.bg-primary-600 { background-color: var(--primary-600); }
.bg-primary-100 { background-color: var(--primary-100); }
.bg-primary-50 { background-color: var(--primary-50); }

.hover\:bg-primary-700:hover { background-color: var(--primary-700); }
.hover\:text-primary-600:hover { color: var(--primary-600); }
.hover\:text-primary-800:hover { color: var(--primary-800); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow);
    transition: all 0.25s ease;
}

.btn:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary-600);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-700);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: right;
    padding: 0.75rem;
}

tr:hover {
    background-color: var(--gray-50);
}
#nav-links > a {
    border:1px solid rgba(0, 0, 0, .05);
    border-radius: 10px;
    white-space: nowrap;
}
.nav-link.active {
    /* color: var(--primary-600); border-bottom: 2px solid var(--primary-600); */
    font-weight: bold;
}

.hidden {
    display: none !important;
}

#container:not(.auth-wrapper) {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    #container:not(.auth-wrapper) {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    #container:not(.auth-wrapper) {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Menu toggle button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 110;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    #nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 24px 24px;
        gap: 8px;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }

    #nav-links.open {
        transform: translateX(0);
    }

    #nav-links > a {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .nav-right {
        display: none;
    }

    .nav-right.mobile-open {
        display: flex;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 280px;
        background: #fff;
        padding: 16px 24px;
        box-shadow: -4px -4px 15px rgba(0, 0, 0, 0.1);
        z-index: 101;
        justify-content: space-around;
    }
}

/* Auth Layout */
.auth-wrapper {
    display: flex;
    min-height: 100vh;
}

.auth-panel {
    display: none;
    flex: 1;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    align-items: center;
    justify-content: center;
    padding: 48px;
    color: #fff;
}

.auth-panel-content {
    max-width: 400px;
}

.auth-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.auth-panel-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.auth-panel-content p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
}

.auth-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    background: var(--gray-50);
}

.auth-form-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
}

.auth-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 32px;
}

.auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.auth-header .auth-form-title {
    margin-bottom: 0;
}

.lang-select {
    padding: 4px 28px 4px 10px;
    font-size: 0.8rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.auth-field input {
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--gray-50);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-field input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
    background: #fff;
    outline: none;
}

.auth-radio-group {
    display: flex;
    gap: 16px;
}

.auth-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--gray-50);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    flex: 1;
    text-align: center;
    justify-content: center;
}

.auth-radio:has(input:checked) {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
    background: #fff;
}

.auth-radio input[type="radio"] {
    display: none;
}

.auth-error {
    padding: 10px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 0.875rem;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-600);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-btn:hover {
    background: var(--primary-700);
}

.auth-switch {
    margin-top: 24px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.auth-switch a {
    color: var(--primary-600);
    font-weight: 500;
    text-decoration: none;
    margin-inline-start: 4px;
}

.auth-switch a:hover {
    color: var(--primary-800);
}

@media (min-width: 769px) {
    .auth-panel {
        display: flex;
    }
}

@media (max-width: 768px) {
    .auth-form-side {
        padding: 24px 0;
    }

    .auth-form-box {
        padding: 32px 20px;
        border-radius: 8px;
    }
}

/* Dashboard */
#dashboard {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
}

.dash-welcome {
    margin-bottom: 24px;
}

.dash-welcome h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.dash-welcome p {
    margin-top: 4px;
    font-size: 0.875rem;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.dash-stat {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.15s, box-shadow 0.15s;
}

.dash-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dash-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dash-stat-blue .dash-stat-icon { background: var(--primary-100); color: var(--primary-600); }
.dash-stat-indigo .dash-stat-icon { background: #e0e7ff; color: #4f46e5; }
.dash-stat-purple .dash-stat-icon { background: #f3e8ff; color: #9333ea; }
.dash-stat-cyan .dash-stat-icon { background: #cffafe; color: #0891b2; }
.dash-stat-pink .dash-stat-icon { background: #fce7f3; color: #db2777; }
.dash-stat-amber .dash-stat-icon { background: #fef3c7; color: #d97706; }
.dash-stat-green .dash-stat-icon { background: #dcfce7; color: #16a34a; }
.dash-stat-yellow .dash-stat-icon { background: #fef9c3; color: #ca8a04; }

.dash-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.dash-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .dash-grid { grid-template-columns: 1fr; }
}

.dash-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    overflow: hidden;
}

.dash-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.dash-section-header h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
}

.dash-view-all {
    font-size: 0.8125rem;
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
}

.dash-view-all:hover {
    text-decoration: underline;
}

.dash-list {
    max-height: 320px;
    overflow-y: auto;
}

.dash-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-50);
    gap: 12px;
    transition: background 0.15s;
}

.dash-item:last-child {
    border-bottom: none;
}

.dash-item:hover {
    background: var(--gray-50);
}

.dash-item-left-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-500);
    flex-shrink: 0;
}

.dash-item-body {
    flex: 1;
    min-width: 0;
}

.dash-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-item-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-item-stat {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.dash-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.dash-item-time {
    font-size: 0.6875rem;
    color: var(--gray-400);
}

.dash-item-amount {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.text-green { color: #16a34a; }
.text-red { color: #dc2626; }

.dash-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 500;
    white-space: nowrap;
}

.dash-badge-blue { background: #FFECB3; color: #FF8F00; }
.dash-badge-yellow { background: #fef9c3; color: #a16207; }
.dash-badge-green { background: #dcfce7; color: #15803d; }
.dash-badge-red { background: #fee2e2; color: #b91c1c; }
.dash-badge-gray { background: #f3f4f6; color: #4b5563; }

.dash-empty {
    padding: 32px 20px;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.dash-actions {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}

.dash-action-primary {
    background: var(--primary-50);
    color: var(--primary-700);
}

.dash-action-primary:hover {
    background: var(--primary-100);
}

.dash-action-success {
    background: #dcfce7;
    color: #15803d;
}

.dash-action-success:hover {
    background: #bbf7d0;
}

.dash-action-amber {
    background: #fef3c7;
    color: #92400e;
}

.dash-action-amber:hover {
    background: #fde68a;
}

.dash-action-purple {
    background: #f3e8ff;
    color: #7e22ce;
}

.dash-action-purple:hover {
    background: #e9d5ff;
}

.dash-action-outline {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.dash-action-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.dash-activity {
    max-height: 320px;
    overflow-y: auto;
}

/* Request Cards */
.req-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 18px 20px;
    transition: box-shadow 0.2s, transform 0.15s;
}

.req-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

.req-card-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.req-card-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.req-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-700);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.req-card-title:hover {
    color: var(--primary-500);
    text-decoration: underline;
}

.req-card-time {
    font-size: 0.75rem;
    color: var(--gray-400);
    white-space: nowrap;
}

.req-my-badge {
    font-size: 0.7rem;
    background: #FFECB3;
    color: #FF8F00;
    padding: 2px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.req-card-body {
    margin-bottom: 12px;
}

.req-card-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.req-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 12px;
}

.req-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.req-meta-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

.req-meta-value {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 600;
}

.req-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.req-budget-info {
    flex: 1;
    min-width: 120px;
}

.req-budget-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-top: 4px;
    overflow: hidden;
}

.req-budget-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.bg-green-500 { background-color: #22c55e; }
.bg-yellow-500 { background-color: #eab308; }
.bg-red-500 { background-color: #ef4444; }

.req-card-btn {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-600);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.req-card-btn:hover {
    background: var(--primary-700);
}

.req-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 500;
}

.req-badge-blue { background: #FFECB3; color: #FF8F00; }
.req-badge-yellow { background: #fef9c3; color: #a16207; }
.req-badge-green { background: #dcfce7; color: #15803d; }
.req-badge-red { background: #fee2e2; color: #b91c1c; }
.req-badge-gray { background: #f3f4f6; color: #4b5563; }

/* Pagination */
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: #fff;
    color: var(--gray-600);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s;
}

.page-btn:hover {
    background: var(--gray-50);
    border-color: var(--primary-300);
    color: var(--primary-600);
}

.page-active {
    background: var(--primary-600);
    color: #fff;
    border-color: var(--primary-600);
}

.page-active:hover {
    background: var(--primary-700);
    color: #fff;
}

.page-ellipsis {
    padding: 0 4px;
    color: var(--gray-400);
}

/* Social & Domain Cards */
.social-card, .domain-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    transition: box-shadow 0.15s;
}
.social-card:hover, .domain-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.social-card-body, .domain-card-body {
    flex: 1;
    min-width: 0;
}
.social-card-top, .domain-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.social-card-url {
    font-size: 0.8rem;
    color: var(--primary-600);
    text-decoration: none;
    word-break: break-all;
}
.social-card-url:hover {
    text-decoration: underline;
}
.social-card-user {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2px;
}
.social-code-box, .domain-code-box {
    margin-top: 6px;
    padding: 6px 10px;
    background: var(--gray-50);
    border: 1px dashed var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-code-box code, .domain-code-box code {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-700);
    letter-spacing: 0.5px;
}
.social-card-actions, .domain-card-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}
.social-metrics {
    display: flex;
    gap: 16px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid var(--gray-100);
}
.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}
.metric-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-800);
}
.metric-label {
    font-size: 0.6rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.btn-refresh-metrics {
    padding: 4px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: #fff;
    color: var(--primary-600);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}
.btn-refresh-metrics:hover {
    background: #FFF8E1;
    border-color: #FFE082;
}
.btn-refresh-metrics:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.refresh-icon {
    display: inline-block;
}
.refresh-icon.spinning {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.platform-badge {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.btn-verify, .btn-verify-domain {
    padding: 4px 12px;
    border: none;
    border-radius: 6px;
    background: var(--primary-600);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
}
.btn-verify:hover, .btn-verify-domain:hover {
    background: var(--primary-700);
}
.btn-remove, .btn-remove-domain {
    padding: 4px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: #fff;
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
}
.btn-remove:hover, .btn-remove-domain:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}
.domain-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}
