/* Domain Search Styling */
.domain-search-container {
    width: 100%;
    margin: 0 auto;
}

.domain-search-form {
    width: 100%;
}

.search-input-wrapper {
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: none;
    border: 1px solid #dadadf;
    padding: 10px 20px 10px 0;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.domain-search-input {
    flex: 1;
    font-size: 60px !important;
    font-weight: 300;
    color: #000 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    width: 100%;
    z-index: 1;
    height: inherit !important;
}

.search-input-wrapper input, 
.search-input-wrapper button {
    margin-bottom: unset !important;
}

.search-buttons {
    display: none;
    position: relative;
    z-index: 2;
}

.search-input-wrapper:focus-within .search-buttons {
    display: flex;
}

.search-button,
.transfer-button {
    padding: 4px 25px;
    font-size: 16px;
    background-color: var(--fs-color-primary);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    text-align: center;
}

.search-button {
    margin-right: 10px;
}

.search-button:hover {
    background-color: #333;
}
.transfer-button {
    background-color: transparent;
    border: 2px solid var(--fs-color-primary);
    color: var(--fs-color-primary) !important;
}
.transfer-button:hover {
    color: #fff !important;
}

/* Placeholder animation styling */
.domain-search-input::placeholder {
    color: #999;
    opacity: 1;
    font-weight: 300;
}

/* Domain text styling */
.domain-text {
    font-size: 36px;
    font-weight: 300;
    color: #333;
}

/* Search Results Styling */
.godomains-search-results {
    margin-top: 30px;
}

.godomains-search-results h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.domain-result {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.domain-result p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.search-again {
    margin-top: 30px;
}

/* Search Results Grid Styling */
.domain-results-grid {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.grid-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: #f8f9fa;
    padding: 15px 20px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

.domain-result-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.domain-result-row:last-child {
    border-bottom: none;
}

.domain-result-row.unavailable {
    background-color: #f8f9fa;
    opacity: 0.7;
}

.col-domain {
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-name {
    font-size: 16px;
    color: #333;
}

.status-badge {
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.col-price {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.col-action {
    display: flex;
    justify-content: flex-end;
}

.add-to-cart-btn,
.contact-us-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.add-to-cart-btn {
    background-color: #28a745;
    color: white;
}

.add-to-cart-btn:hover {
    background-color: #218838;
}

.contact-us-btn {
    background-color: #007bff;
    color: white;
}

.contact-us-btn:hover {
    background-color: #0056b3;
}

/* Make the search bar responsive */
@media (max-width: 768px) {
    .search-input-wrapper {
        min-height: 60px;
        padding: 8px 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .domain-search-input {
        font-size: 20px;
        padding: 8px 0;
        margin-right: 0;
        text-align: center;
        width: 100%;
    }
    
    .search-buttons {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        right: auto;
        position: static;
        width: 100%;
    }
    
    .search-button,
    .transfer-button {
        padding: 10px 16px;
        font-size: 14px;
        min-width: 120px;
        flex: 1;
        max-width: 150px;
    }

    .grid-header,
    .domain-result-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }

    .col-domain,
    .col-price,
    .col-action {
        padding: 5px 0;
    }

    .col-action {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .search-input-wrapper {
        min-height: 50px;
        padding: 6px 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .domain-search-input {
        font-size: 16px;
        padding: 6px 0;
        margin-right: 0;
        text-align: center;
        width: 100%;
    }
    
    .search-buttons {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        right: auto;
        position: static;
        width: 100%;
    }
    
    .search-button,
    .transfer-button {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 100px;
        flex: 1;
        max-width: 120px;
    }
    
    .search-button {
        margin-right: 0;
    }
}

/* Domain Overview Page */
.domain-overview-page {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 96%;
    margin: 32px auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
}

.domain-overview-page h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.01em;
}

.domain-overview-page .status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.domain-overview-page .status-badge.active {
    background: #ecfdf5;
    color: #059669;
}

.domain-overview-page .status-badge.expired {
    background: #fef2f2;
    color: #dc2626;
}

.domain-overview-page .domain-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #f3f4f6;
}

.domain-overview-page .domain-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.domain-overview-page .domain-info-row:hover {
    border-color: #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.domain-overview-page .domain-info-row:last-child {
    margin-bottom: 0;
}

.domain-overview-page .domain-info-label {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.domain-overview-page .domain-info-value {
    color: #111827;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.domain-overview-page .domain-info-value a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    padding: 6px 12px;
    border-radius: 6px;
    background: #eff6ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.domain-overview-page .domain-info-value a:hover {
    background: #dbeafe;
    color: #1d4ed8;
}

.domain-overview-page .domain-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.domain-overview-page .setting-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.domain-overview-page .setting-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.domain-overview-page .setting-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain-overview-page .setting-card h3 svg {
    color: #2563eb;
}

.domain-overview-page .setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #f3f4f6;
}

.domain-overview-page .setting-item:last-child {
    margin-bottom: 0;
}

.domain-overview-page .setting-label {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* Switch styles */
.domain-overview-page .switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.domain-overview-page .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.domain-overview-page .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .2s;
    border-radius: 24px;
}

.domain-overview-page .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.domain-overview-page input:checked + .slider {
    background-color: #2563eb;
}

.domain-overview-page input:checked + .slider:before {
    transform: translateX(20px);
}

.domain-overview-page .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    gap: 6px;
    margin: 0px;
}

.domain-overview-page .button-primary {
    background: #2563eb;
    color: #fff;
}

.domain-overview-page .button-primary:hover {
    background: #1d4ed8;
}

.domain-overview-page .button-secondary {
    background: #f3f4f6;
    color: #374151;
}

.domain-overview-page .button-secondary:hover {
    background: #f6f8fb;
    color: var(--fs-color-alert);
}

.domain-overview-page .manage-nameserver-card {
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    margin-top: 32px;
}

.domain-overview-page .manage-nameserver-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.domain-overview-page .manage-nameserver-card a {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
}

.domain-overview-page .manage-nameserver-card .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    transition: all 0.2s;
}

.domain-overview-page .manage-nameserver-card:hover .icon-wrapper {
    background: #dbeafe;
    transform: scale(1.05);
}

.domain-overview-page .manage-nameserver-card .content {
    flex: 1;
}

.domain-overview-page .manage-nameserver-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.domain-overview-page .manage-nameserver-card p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.domain-overview-page .manage-nameserver-card .arrow {
    color: #2563eb;
    font-size: 20px;
    transition: transform 0.2s;
}

.domain-overview-page .manage-nameserver-card:hover .arrow {
    transform: translateX(4px);
}

.nameserver-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #111827;
}

.nameserver-item:last-child {
    margin-bottom: 0;
}

.nameserver-item svg {
    color: #2563eb;
    flex-shrink: 0;
}

.no-nameservers,
.no-value {
    color: #9ca3af;
    font-style: italic;
    font-size: 13px;
}

.renew-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.renew-link svg {
    transition: transform 0.2s;
}

.renew-link:hover svg {
    transform: rotate(180deg);
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .domain-overview-page {
        padding: 32px;
        margin: 24px auto;
    }
    
    .domain-overview-page .domain-settings {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .domain-overview-page {
        padding: 24px;
        margin: 16px auto;
        border-radius: 16px;
    }
    
    .domain-overview-page h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .domain-overview-page .domain-info,
    .domain-overview-page .setting-card {
        padding: 20px;
    }
    
    .domain-overview-page .domain-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .domain-overview-page .domain-info-value {
        width: 100%;
    }
    
    .domain-overview-page .domain-info-value a {
        margin-top: 8px;
    }
    
    .domain-overview-page .manage-nameserver-card a {
        padding: 20px;
    }
    
    .domain-overview-page .manage-nameserver-card .icon-wrapper {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .domain-overview-page {
        padding: 20px;
        margin: 12px auto;
    }
    
    .domain-overview-page h2 {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .domain-overview-page .setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .domain-overview-page .manage-nameserver-card a {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    
    .domain-overview-page .manage-nameserver-card .icon-wrapper {
        margin: 0 auto;
    }
    
    .domain-overview-page .manage-nameserver-card .arrow {
        display: none;
    }
}

/* My Domains Page */
.godomains-my-domains h2 {
    margin-bottom: 24px;
}

.godomains-my-domains .table-container {
    overflow-x: auto;
}

.godomains-my-domains .wp-list-table {
    border: none;
}

.godomains-my-domains th {
    font-weight: 600;
    color: #1d2327;
}

.godomains-my-domains .status-badge.active {
    background: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.godomains-my-domains .status-badge.expired {
    background: #f8d7da;
    color: #721c24;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.godomains-my-domains .button-small {
    font-size: 12px;
    padding: 4px 12px;
}

/* Switch styles */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 22px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2271b1;
}

input:checked + .slider:before {
    transform: translateX(18px);
}

/* Responsive styles */
@media screen and (max-width: 782px) {
    .domain-overview-page {
        padding: 20px;
        margin: 20px auto;
    }
    
    .godomains-my-domains .table-container {
        margin: 0 -20px;
    }
} 

ul.dashboard-links{
    display: none !important;
}

/* Action buttons styling */
.wcmad-action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.wcmad-action-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
    min-width: 70px;
    justify-content: center;
}

.wcmad-action-button:hover {
    text-decoration: none;
}

.wcmad-action-button .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 1;
}

.wcmad-action-manage {
    background: var(--fs-color-primary);
    color: white !important;
    
}

.wcmad-action-manage:hover {
    background: var(--fs-color-secondary);
    color: white !important;
}

.wcmad-action-dns {
    background: var(--fs-color-secondary);
    color: white !important;
}

.wcmad-action-dns:hover {
    background: var(--fs-color-primary);
    color: white !important;
}

.wcmad-action-renew {
    background: var(--fs-color-success);
    color: white !important;
}

.wcmad-action-renew:hover {
    background: var(--fs-color-success);
    color: white !important;
}

/* Responsive design for action buttons */
@media (max-width: 768px) {
    .wcmad-action-buttons {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }
    .wcmad-action-button {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
    }
}

.godomains-dns-management-page {
    color: #1d2327;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dns-breadcrumbs {
    font-size: 14px;
    color: #646970;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e4e7;
}

.dns-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e4e7;
}

.dns-tabs .tab {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #646970;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.dns-tabs .tab:hover {
    color: #2271b1;
}

.dns-tabs .tab.active {
    color: #2271b1;
    border-bottom-color: #2271b1;
}

.dns-section {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e4e7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title svg {
    width: 20px;
    height: 20px;
    color: #2271b1;
}

.section-desc {
    font-size: 14px;
    color: #646970;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e4e7;
    line-height: 1.5;
}

.ns-list-box {
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ns-item {
    background: #f0f6fc;
    color: #2271b1;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid #c5d9ed;
}

.change-ns-btn {
    margin: 0 24px 24px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.change-ns-btn:hover {
    opacity: 0.9;
}

.dns-add-record-form {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: center;
    background: #f6f7f7;
    border-bottom: 1px solid #e2e4e7;
}

.dns-add-record-form select,
.dns-add-record-form input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.dns-add-record-form select:focus,
.dns-add-record-form input:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.dns-add-record-form .add-record-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 2px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    
}

.dns-add-record-form .add-record-btn:hover {
    background: #135e96;
}

.dns-records-table-box {
    padding: 24px;
}

.dns-search-input {
    width: 100%;
    max-width: 300px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dns-search-input:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.dns-records-table1 {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.dns-records-table1 th {
    text-align: left;
    padding: 12px;
    font-weight: 600;
    color: #1d2327;
    border-bottom: 1px solid #e2e4e7;
    background: #f6f7f7;
}
.dns-records-table1 th:first-child,
.dns-records-table1 td:first-child{
    padding: 12px;
    width: 100px;
}

.dns-records-table1 td {
    padding: 12px;
    border-bottom: 1px solid #e2e4e7;
    vertical-align: middle;
}

.dns-records-table1 tr:last-child td {
    border-bottom: none;
}

.dns-records-table1 tr:hover {
    background: #f6f7f7;
}

.status-active {
    color: #00a32a;
    background: #edfaef;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.status-inactive {
    color: #d63638;
    background: #fcf0f1;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.dns-delete, .dns-edit {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    margin-right: 8px;
}

.dns-delete {
    color: #d63638;
    background: #fcf0f1;
}

.dns-delete:hover {
    background: #f8d7da;
}

.dns-edit {
    color: #2271b1;
    background: #f0f6fc;
}

.dns-edit:hover {
    background: #e5f0fa;
}

.no-records {
    text-align: center;
    color: #646970;
    padding: 24px;
    font-style: italic;
    width: 100%;
}

.dns-ns-spinner {
    color: #666;
    font-size: 12px;
    font-style: italic;
}

@media (max-width: 782px) {
    .godomains-dns-management-page {
        padding: 12px;
    }

    .dns-tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .dns-tabs .tab {
        padding: 12px 16px;
    }

    .dns-add-record-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dns-records-table1 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dns-records-table1 th,
    .dns-records-table1 td {
        padding: 8px;
        font-size: 13px;
    }

    .section-title,
    .section-desc {
        padding: 16px;
    }

    .ns-list-box {
        padding: 12px 16px;
    }

    .dns-records-table-box {
        padding: 16px;
    }
}

.select-resize-ghost, .select2-container .select2-choice, .select2-container .select2-selection, input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea{
    box-shadow: none !important;
    border-radius: 4px !important;
}
.section.whois-container{
    margin-top: 20px;
    display: none;
}

/* DNS Page Header Styles */
.dns-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f7;
}

.dns-header-left h2 {
    margin: 0 0 8px 0;
    color: #1a202c;
    font-size: 24px;
    font-weight: 600;
}

.dns-header-left p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.back-to-manage-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #374151;
    text-decoration: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-to-manage-btn:hover {
    background: #e5e7eb;
    color: #1f2937;
    text-decoration: none;
    border-color: #9ca3af;
}

.back-to-manage-btn svg {
    width: 16px;
    height: 16px;
    color: currentColor;
}

/* Nameserver Management Styles */
.nameserver-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}

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

.nameserver-item .setting-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.nameserver-item .setting-label svg {
    color: #2563eb;
    width: 16px;
    height: 16px;
}

.btn-delete-ns {
    font-size: 13px;
    padding: 6px 12px;
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

.btn-delete-ns:hover {
    background: #c82333;
    border-color: #bd2130;
    color: white;
}

.btn-delete-ns:disabled {
    background: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}

.add-nameserver-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eef2f7;
}

.add-nameserver-section h4 {
    margin: 0 0 16px 0;
    color: #1a202c;
    font-size: 16px;
    font-weight: 600;
}

.add-nameserver-form .form-row {
    display: flex;
    gap: 16px;
    align-items: end;
}

.add-nameserver-form .form-group {
    flex: 1;
}

.add-nameserver-form .form-group label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

.add-nameserver-form .form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 0px;
    box-shadow: none;
}

.add-nameserver-form .form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb;
}

.add-nameserver-form .form-group input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.add-nameserver-form .button-primary {
    white-space: nowrap;
    padding: 2px 16px;
    font-size: 14px;
}

.nameserver-list .no-value {
    color: #6b7280;
    font-style: italic;
    padding: 12px 0;
}

/* Loading states */
.nameserver-item.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-delete-ns.loading {
    background: #6c757d;
    border-color: #6c757d;
    cursor: wait;
}

/* DNS Record Management Additional Styles */
.dns-delete:disabled, .dns-edit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-record-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design for DNS Pages */
@media (max-width: 768px) {
    .dns-page-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .back-to-manage-btn {
        align-self: flex-start;
    }

    .add-nameserver-form .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .add-nameserver-form .button-primary {
        width: 100%;
    }

    .nameserver-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nameserver-item .btn-delete-ns {
        align-self: flex-end;
    }
}

/* SSL Notification Styles */
.ssl-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    max-width: 420px;
    min-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    z-index: 10000;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.ssl-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2563eb;
    transition: background-color 0.3s ease;
}

.ssl-notification-success::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.ssl-notification-error::before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.ssl-notification-info::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.ssl-notification-content {
    display: flex;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
}

.ssl-notification-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
}

.ssl-notification-success .ssl-notification-icon {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
}

.ssl-notification-error .ssl-notification-icon {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    color: #dc2626;
}

.ssl-notification-info .ssl-notification-icon {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
}

.ssl-notification-body {
    flex: 1;
    min-width: 0;
}

.ssl-notification-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.ssl-notification-message {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.ssl-notification-close {
    flex-shrink: 0;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9ca3af;
    transition: all 0.2s ease;
    font-size: 16px;
    margin-top: -4px;
    margin-right: -8px;
}

.ssl-notification-close:hover {
    background: #f3f4f6;
    color: #6b7280;
    transform: scale(1.1);
}

.ssl-notification-close:active {
    transform: scale(0.95);
}

.ssl-notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #e5e7eb;
    width: 100%;
}

.ssl-notification-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    width: 100%;
    animation: progressShrink 6s linear forwards;
}

.ssl-notification-success .ssl-notification-progress-bar {
    background: linear-gradient(90deg, #10b981, #059669);
    animation: progressShrink 6s linear forwards;
}

.ssl-notification-error .ssl-notification-progress-bar {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    animation: progressShrink 6s linear forwards;
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
}

@keyframes progressShrink {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}

.ssl-notification.ssl-notification-exit {
    animation: slideOutRight 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* SSL Notification Container for multiple notifications */
.ssl-notification-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    pointer-events: none;
}

.ssl-notification-container .ssl-notification {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 16px;
    pointer-events: all;
}

/* Responsive SSL Notifications */
@media (max-width: 768px) {
    .ssl-notification {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        min-width: auto;
    }
    
    .ssl-notification-content {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .ssl-notification-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .ssl-notification-title {
        font-size: 14px;
    }
    
    .ssl-notification-message {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ssl-notification {
        top: 12px;
        right: 12px;
        left: 12px;
    }
    
    .ssl-notification-content {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .ssl-notification-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* SSL Status Animation Enhancement */
.ssl-status-progress {
    animation: sslPulse 2s infinite;
}

@keyframes sslPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* SSL Toggle Loading State */
.ssl-toggle:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.ssl-toggle:disabled + .slider:before {
    animation: toggleLoading 1s linear infinite;
}

@keyframes toggleLoading {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(13px) rotate(180deg);
    }
    100% {
        transform: translateX(0) rotate(360deg);
    }
}

/* Nameserver Delete Confirmation Modal - Clean Professional Design */
.nameserver-delete-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.15s ease-out;
}

.nameserver-delete-modal .godomains-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    animation: modalSlideIn 0.2s ease-out;
}

.nameserver-delete-modal .modal-header {
    padding: 24px 24px 16px;
    border-bottom: none;
}

.nameserver-delete-modal .modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    line-height: 1.5;
}

.nameserver-delete-modal .godomains-modal-close {
    display: none;
}

.nameserver-delete-modal .modal-body {
    padding: 0 24px 20px;
}

.nameserver-delete-modal .warning-icon {
    display: none;
}

.nameserver-delete-modal .confirmation-message {
    font-size: 14px;
    color: #5f6368;
    margin: 0 0 8px 0;
    line-height: 1.4;
    font-weight: 400;
}

.nameserver-delete-modal .nameserver-info {
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 12px 0 0 0;
    color: #202124;
    font-size: 13px;
    font-weight: 500;
    word-break: break-all;
}

.nameserver-delete-modal .nameserver-info::before {
    display: none;
}

.nameserver-delete-modal .modal-footer {
    padding: 0 24px 24px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    border-top: none;
}

.nameserver-delete-modal .btn {
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    border: 1px solid transparent;
    min-width: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    position: relative;
    overflow: visible;
}

.nameserver-delete-modal .btn::before {
    display: none;
}

.nameserver-delete-modal .btn-cancel {
    background: transparent;
    color: #1a73e8;
    border: none;
    font-weight: 500;
}

.nameserver-delete-modal .btn-cancel:hover {
    background: rgba(26, 115, 232, 0.04);
    color: #1a73e8;
    transform: none;
    box-shadow: none;
}

.nameserver-delete-modal .btn-delete {
    background: #1a73e8;
    color: #fff;
    border: 1px solid #1a73e8;
    font-weight: 500;
}

.nameserver-delete-modal .btn-delete:hover {
    background: #1557b0;
    border-color: #1557b0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transform: none;
}

.nameserver-delete-modal .btn-delete:active {
    background: #1143a3;
    border-color: #1143a3;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    transform: none;
}

/* Simple Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Clean Responsive Design */
@media (max-width: 640px) {
    .nameserver-delete-modal .godomains-modal-content {
        margin: 15% auto;
        width: 95%;
        max-width: none;
    }
    
    .nameserver-delete-modal .modal-header {
        padding: 20px 20px 16px;
    }
    
    .nameserver-delete-modal .modal-body {
        padding: 0 20px 16px;
    }
    
    .nameserver-delete-modal .modal-footer {
        padding: 0 20px 20px;
        flex-direction: column-reverse;
        gap: 8px;
    }
    
    .nameserver-delete-modal .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nameserver-delete-modal .godomains-modal-content {
        margin: 20% auto;
    }
    
    .nameserver-delete-modal .modal-header h3 {
        font-size: 15px;
    }
    
    .nameserver-delete-modal .confirmation-message {
        font-size: 13px;
    }
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    padding: 16px 20px;
    margin-bottom: 12px;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: all;
    animation: toastSlideIn 0.3s ease-out;
    position: relative;
    border-left: 4px solid transparent;
}

.toast.toast-success {
    border-left-color: #34a853;
}

.toast.toast-error {
    border-left-color: #ea4335;
}

.toast.toast-info {
    border-left-color: #4285f4;
}

.toast-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: #34a853;
}

.toast-error .toast-icon {
    background: #ea4335;
}

.toast-info .toast-icon {
    background: #4285f4;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin: 0 0 2px 0;
    line-height: 1.4;
}

.toast-message {
    font-size: 13px;
    color: #5f6368;
    margin: 0;
    line-height: 1.4;
}

.toast-close {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5f6368;
    font-size: 16px;
    transition: background-color 0.15s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(95, 99, 104, 0.1);
}

.toast.toast-exit {
    animation: toastSlideOut 0.25s ease-in forwards;
}

/* Toast Animations */
@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
        max-height: 100px;
        margin-bottom: 12px;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
        max-height: 0;
        margin-bottom: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .toast-container {
        top: 16px;
        right: 16px;
        left: 16px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}

/* Domain Transfer Form Styles */
.domain-transfer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
}

.domain-transfer-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0px;
}

.transfer-field-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transfer-label {
    font-weight: 500;
    color: #1a202c !important;
    margin: 0;
}

.transfer-input-field {
    width: 100%;
    padding: 20px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    color: #333;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
    outline: none;
}

.transfer-input-field:focus {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.transfer-input-field::placeholder {
    color: #999;
    font-size: 16px;
}

.transfer-auth-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.auth-field {
    flex: 1;
}

.transfer-continue-btn {
    background: var(--fs-color-primary);
    color: white;
    border: none;
    
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    
    min-width: 140px;
    justify-content: center;
    height: fit-content;
    
}

.transfer-continue-btn:hover {
    background: var(--fs-color-secondary);
    
}

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

.transfer-continue-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    color: white;
}

.btn-loading {
    display: none;
}

.btn-loading .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.transfer-continue-btn:disabled .btn-text,
.transfer-continue-btn:disabled .btn-arrow {
    display: none;
}

.transfer-continue-btn:disabled .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Transfer Messages */
.transfer-result {
    margin-top: 20px;
}

.transfer-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.transfer-loading .transfer-message {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.transfer-success .transfer-message {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.transfer-error .transfer-message {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.message-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #0369a1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.message-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.message-icon.success {
    background: #16a34a;
}

.message-icon.error {
    background: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
    .transfer-auth-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .transfer-continue-btn {
        width: 100%;
        margin-top: 10px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .domain-transfer-container {
        padding: 20px 15px;
    }
    
    .transfer-input-field {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .transfer-label {
        font-size: 14px;
    }
}

/* Transfer Loading and Success Messages */
.transfer-loading-message {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-left: 4px solid #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.transfer-loading-message p {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.transfer-loading-message small {
    font-size: 14px;
    color: #666;
}

.transfer-success-message {
    text-align: center;
    padding: 40px;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 12px;
    margin-top: 20px;
}

.success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
}

.transfer-success-message h3 {
    font-size: 24px;
    color: #155724;
    margin-bottom: 15px;
}

.transfer-success-message p {
    font-size: 16px;
    color: #155724;
    margin-bottom: 20px;
}

.transfer-success-message .btn {
    background: #28a745;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.transfer-success-message .btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

/* Responsive Design for Transfer Form */
@media (max-width: 768px) {
    .domain-transfer-container {
        margin: 0 10px;
        padding: 15px;
    }
    
    .transfer-form-header h2 {
        font-size: 24px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .transfer-input-group.half,
    .transfer-input-group.third {
        flex: none;
        margin-bottom: 20px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .transfer-submit-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .transfer-pricing-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .domain-transfer-container {
        padding: 10px;
    }
    
    .transfer-form-header {
        margin-bottom: 20px;
    }
    
    .transfer-form-header h2 {
        font-size: 20px;
    }
    
    .transfer-form-header p {
        font-size: 14px;
    }
    
    .transfer-input, .transfer-select {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 24px;
    }
}

/* Modern Puny Converter Styling */
.puny-converter-modern-container {
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.puny-converter-header {
    margin-bottom: 20px;
}

.puny-converter-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c !important;
    margin: 0 0 6px 0;
}

.puny-converter-subtitle {
    font-size: 14px;
    color: #718096 !important;
    margin: 0 0 4px 0;
}

.puny-converter-form-container {
    width: 100%;
    margin-bottom: 0px;
    grid-column: 1;
}

.puny-input-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
}

.puny-modern-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
    background: #ffffff;
    color: #2d3748;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.puny-modern-input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.puny-modern-input::placeholder {
    color: #a0aec0;
}

.puny-action-bar {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0px;
}

.puny-convert-modern-btn {
    background: var(--fs-color-primary);
    color: white;
    border: none;
    padding: 6px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
    margin: 0px;
}

.puny-convert-modern-btn:hover:not(:disabled) {
    background: var(--fs-color-secondary);
}

.puny-convert-modern-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.puny-results-container {
    margin-top: 0;
    padding: 20px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    grid-column: 2;
    position: sticky;
    top: 20px;
}

.puny-loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-spinner-large {
    margin-bottom: 16px;
    color: #4299e1;
}

.loading-spinner-large svg {
    animation: spin 1s linear infinite;
}

.loading-text {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
    font-weight: 500;
}

.puny-result-item {
    background: #ffffff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.result-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    width: 300px;
}
.copy-button{
    margin: 0px;
}
.conversion-type {
    font-size: 12px;
    font-weight: 500;
    color: #4299e1;
    background: #ebf8ff;
    padding: 4px 8px;
    border-radius: 4px;
}

.result-content {
    margin-bottom: 16px;
}

.result-input, .result-output {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.result-label {
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    min-width: 80px;
}

.result-text {
    font-size: 14px;
    color: #2d3748;
    background: #f7fafc;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.result-copyable {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.result-text-field {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    background: #ffffff;
    color: #2d3748;
    margin: 0px !important;
}

.copy-button {
    background: #4299e1;
    color: white;
    border: none;
    padding: 0px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.copy-button:hover {
    background: #3182ce;
}

.result-explanation {
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.explanation-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.puny-error-message {
    margin-top: 20px;
    padding: 16px;
    background: #fed7d7;
    border: 1px solid #feb2b2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    grid-column: 1;
}

.error-icon {
    font-size: 16px;
}

.error-text {
    font-size: 14px;
    color: #c53030;
    font-weight: 500;
}

.puny-converter-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    grid-column: 1;
}

.info-section, .examples-section {
    margin-bottom: 24px;
}

.info-title, .examples-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 12px 0;
}

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

.info-list li {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.info-list li:before {
    content: "•";
    color: #4299e1;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.examples-grid {
    display: grid;
    gap: 12px;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.example-label {
    font-size: 12px;
    font-weight: 500;
    color: #4a5568;
    min-width: 60px;
}

.example-domain, .example-result {
    font-size: 13px;
    color: #2d3748;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.example-domain {
    flex: 1;
}

.example-result {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .puny-converter-modern-container {
        margin: 0 10px;
        padding: 15px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .puny-converter-form-container,
    .puny-converter-info,
    .puny-error-message {
        grid-column: 1;
    }
    
    .puny-results-container {
        grid-column: 1;
        position: static;
        margin-top: 20px;
    }
    
    .puny-converter-title {
        font-size: 18px;
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .result-input, .result-output {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .result-label {
        min-width: auto;
    }
    
    .example-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .example-label {
        min-width: auto;
    }
}

/* IDN Search Styling */
.idn-search-container {
    position: relative;
}

.idn-search-input {
    direction: rtl;
    text-align: right;
    font-family: 'Arial', 'Tahoma', sans-serif;
}

.idn-search-info {
    margin-top: 12px;
    padding: 12px 16px;
    background: #f0f8ff;
    border: 1px solid #b3d9ff;
    border-radius: 6px;
    text-align: center;
}

.idn-info-text {
    font-size: 13px;
    color: #1e40af;
    margin: 0;
    line-height: 1.4;
}

.idn-info-text strong {
    font-weight: 600;
    color: #1d4ed8;
}

/* Mobile responsive styles for IDN search */
@media (max-width: 768px) {
    .idn-search-container .search-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .idn-search-container .domain-search-input {
        font-size: 18px;
        text-align: center;
        direction: rtl;
    }
    
    .idn-search-container .search-buttons {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    
    .idn-search-info {
        margin-top: 16px;
        padding: 16px;
        text-align: center;
    }
    
    .idn-info-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .idn-search-container .domain-search-input {
        font-size: 16px;
    }
    
    .idn-search-info {
        padding: 12px;
    }
    
    .idn-info-text {
        font-size: 11px;
    }
}

/* Modern Bulk Domain Search Styling */
.bulk-search-modern-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bulk-search-header {
    margin-bottom: 20px;
}

.bulk-search-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c !important;
    margin: 0 0 6px 0;
}

.bulk-search-subtitle {
    font-size: 14px;
    color: #718096 !important;
    margin: 0 0 4px 0;
}

.bulk-items-counter {
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    color: #718096 !important;
}

.items-count {
    font-weight: 600;
}

.bulk-search-modern-form {
    width: 100%;
    margin-bottom: 0px;
}

.bulk-input-container {
    margin-bottom: 20px;
}

.bulk-modern-input {
    width: 100%;
    min-height: 140px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    background: #ffffff;
    color: #2d3748;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.bulk-modern-input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.bulk-modern-input::placeholder {
    color: #a0aec0;
}

.bulk-extensions-section {
    padding: 4px 16px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 20px;
}

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

.extensions-label {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
}

.extensions-toggle-btn {
    background: none;
    border: none;
    color: #4a5568;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0px;
    font-weight: 400;
}

.extensions-toggle-btn:hover {
    background: #edf2f7;
    color: #2d3748;
}

.extensions-toggle-btn .toggle-icon {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.extensions-toggle-btn.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.bulk-extensions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bulk-extensions-list.collapsed {
    max-height: 0;
    margin-top: -12px;
}

.bulk-action-bar {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 16px 0px;
}

.bulk-search-modern-btn {
    background: var(--fs-color-primary);
    color: white;
    border: none;
    padding: 6px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
    margin: 0px;
}

.bulk-search-modern-btn:hover:not(:disabled) {
    background: var(--fs-color-secondary);
}

.bulk-search-modern-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.extension-item {
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #ffffff;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 400;
    user-select: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    box-sizing: border-box;
    color: #4a5568;
}

.extension-item:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.extension-item.selected {
    background: var(--fs-color-primary);
    border-color: var(--fs-color-primary);
    color: white;
}

.extension-name {
    font-weight: 400;
    line-height: 1;
    color: #1a202c;
}

.extension-item.selected .extension-name {
    color: white;
}

/* Loading spinner for the button */
.bulk-search-modern-btn .spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsiveness for Modern Bulk Search */
@media (max-width: 768px) {
    .bulk-search-modern-container {
        padding: 16px;
        margin: 16px auto;
    }
    
    .bulk-search-title {
        font-size: 18px;
    }
    
    .bulk-search-subtitle {
        font-size: 13px;
    }
    
    .bulk-modern-input {
        min-height: 120px;
        padding: 12px;
        font-size: 14px;
    }
    
    .bulk-extensions-section {
        padding: 12px;
    }
    
    .extensions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .extensions-label {
        font-size: 13px;
    }
    
    .extensions-toggle-btn {
        font-size: 11px;
        padding: 3px 6px;
        align-self: flex-end;
    }
    
    .bulk-extensions-list {
        gap: 6px;
        justify-content: flex-start;
    }
    
    .extension-item {
        font-size: 12px;
        padding: 5px 10px;
        min-height: 26px;
    }
    
    .bulk-action-bar {
        padding: 12px;
        justify-content: center;
    }
    
    .bulk-search-modern-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .bulk-search-modern-container {
        padding: 12px;
    }
    
    .bulk-search-title {
        font-size: 16px;
    }
    
    .bulk-items-counter {
        text-align: center;
        margin-bottom: 8px;
    }
    
    .bulk-modern-input {
        min-height: 100px;
        padding: 10px;
        font-size: 13px;
    }
    
    .bulk-extensions-section {
        padding: 10px;
    }
    
    .extension-item {
        font-size: 11px;
        padding: 4px 8px;
        min-height: 24px;
    }
    
    .bulk-action-bar {
        padding: 10px;
    }
    
    .bulk-search-modern-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .extensions-toggle-btn {
        font-size: 10px;
        padding: 2px 4px;
    }
}

/* Modern Bulk Results Styling */
.bulk-results-modern-container {
    max-width: 800px;
    margin: 24px auto 0;
}

/* Empty State */
.bulk-search-empty-state {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 48px 24px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bulk-search-empty-state .empty-state-content {
    max-width: 400px;
    margin: 0 auto;
}

.bulk-search-empty-state .empty-icon {
    font-size: 40px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.bulk-search-empty-state h3 {
    margin: 0 0 8px 0;
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
}

.bulk-search-empty-state p {
    margin: 0;
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
}

/* Loading State */
.bulk-search-loading-state {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 48px 24px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bulk-search-loading-state .loading-content {
    max-width: 300px;
    margin: 0 auto;
}

.bulk-search-loading-state .loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #4299e1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.bulk-search-loading-state h3 {
    margin: 0 0 8px 0;
    color: #1a202c;
    font-size: 16px;
    font-weight: 600;
}

.bulk-search-loading-state p {
    margin: 0;
    color: #718096;
    font-size: 14px;
}

/* Results State */
.bulk-search-results-state {
    background: #ffffff;
    margin-top: 24px;
}

.bulk-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px 12px 0 0;
}

.bulk-results-summary {
    display: flex;
    gap: 32px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.summary-count {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.summary-count.available-count {
    color: #059669;
}

.summary-count.unavailable-count {
    color: #dc2626;
}

.summary-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 400;
    letter-spacing: 0.8px;
}

.bulk-results-filters {
    display: flex;
    gap: 8px;
    background: #ffffff;
    padding: 0px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 0px;
}

.filter-btn:hover {
    color: #334155;
    background: #f8fafc;
}

.filter-btn.active {
    background: #f6f8fb;
    color: var(--fs-color-primary);
}

.bulk-results-list {
    padding: 0;
}

.bulk-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bulk-result-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.bulk-result-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.bulk-result-domain {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bulk-result-domain .domain-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.bulk-result-domain .taken-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    font-style: italic;
}

.bulk-result-price {
    flex: 1;
    text-align: center;
    color: #475569;
    font-weight: 500;
}

.bulk-price {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 2px;
}

.bulk-renewal {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.not-available {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
}

.bulk-result-action {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

/* Custom Checkbox Styling */
.bulk-checkbox-wrapper {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.bulk-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bulk-checkbox-wrapper:hover .checkmark {
    border-color: #3b82f6;
    background-color: #f8fafc;
}

.bulk-checkbox-wrapper input:checked ~ .checkmark {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bulk-checkbox-wrapper input:checked ~ .checkmark:after {
    display: block;
}

.bulk-buy-now-btn,
.bulk-contact-btn {
    padding: 2px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    margin: 0px;
}

.bulk-buy-now-btn {
    background: var(--fs-color-primary);
    color: white;
}

.bulk-buy-now-btn:hover {
    background: var(--fs-color-secondary);
}

.bulk-contact-btn {
    margin: 0 !important;
    padding: 0px 12px !important;
    font-size: 13px !important;
}

.bulk-contact-btn:hover {
    background: #475569;
    color: white;
    text-decoration: none;
}

.bulk-results-actions {
    padding: 24px 32px;
    border-top: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0 0 12px 12px;
    text-align: center;
}

.bulk-add-selected-btn {
    background: var(--fs-color-primary);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 180px;
}

.bulk-add-selected-btn:hover:not(:disabled) {
    background: var(--fs-color-secondary);
}

.bulk-add-selected-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bulk-results-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 20px 16px;
    }

    .bulk-results-summary {
        gap: 24px;
        align-self: center;
    }

    .bulk-results-filters {
        align-self: stretch;
        justify-content: center;
    }

    .bulk-result-item {
        flex-direction: column;
        gap: 12px;
        text-align: left;
        align-items: stretch;
        padding: 16px 20px;
    }

    .bulk-result-domain,
    .bulk-result-price,
    .bulk-result-action {
        flex: none;
    }

    .bulk-result-price {
        text-align: left;
    }

    .bulk-result-action {
        justify-content: space-between;
    }

    .bulk-results-actions {
        padding: 20px 16px;
    }

    .bulk-add-selected-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .bulk-search-results-state {
        border-radius: 8px;
        margin-top: 16px;
    }

    .bulk-results-header {
        padding: 16px 12px;
        border-radius: 8px 8px 0 0;
    }

    .summary-count {
        font-size: 20px;
    }

    .bulk-result-item {
        padding: 12px 16px;
    }

    .bulk-result-item:last-child {
        border-radius: 0 0 8px 8px;
    }

    .bulk-result-domain .domain-name {
        font-size: 15px;
    }

    .bulk-price {
        font-size: 15px;
    }

    .bulk-buy-now-btn,
    .bulk-contact-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 80px;
    }

    .bulk-results-actions {
        padding: 16px 12px;
        border-radius: 0 0 8px 8px;
    }
}

.view-cart-btn {
    border-color: #28a745 !important;
    color: #28a745 !important;
    background: transparent !important;
    padding: 2px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    margin: 0px;
}

.view-cart-btn:hover {
    background: #28a745 !important;
    color: white !important;
    text-decoration: none;
}