/* WordPress Plugin Dashboard Styles */

/* .fx_f_sub_container {
    display: flex;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
} */

/* Sidebar Styles */
.fx_f_sub_sidebar {
    width: 250px;
    height: calc(100vh - 70px);
    background-color: #111111;
    color: white;
    flex-shrink: 0;
}

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

.fx_f_sub_nav_item {
    margin-bottom: 5px;
}

.fx_f_sub_nav_item a {
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.fx_f_sub_nav_item a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.fx_f_sub_nav_item .material-symbols-outlined {
    font-size: 20px;
    margin-right: 10px;
    margin-top: 2px;
}

/* Main Content Styles */
.fx_f_sub_main_content {
    flex-grow: 1;
    padding: 20px;
    position: relative;
    background-color: #f5f5f5;
    color: #333333;
    height: calc(100vh - 70px);
    overflow: auto;
}

.fx_f_sub_page {
    display: none;
}

.fx_f_sub_active_page {
    display: block;
}

.fx_f_sub_page_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.fx_f_sub_page_header h1 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.fx_f_sub_header_actions {
    display: flex;
    gap: 10px;
}

.fx_f_sub_search_btn, .fx_f_sub_menu_btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #333333;
}

.fx_f_sub_search_btn .material-symbols-outlined, .fx_f_sub_menu_btn .material-symbols-outlined {
    font-size: 20px;
}

/* Filter Bar Styles */
.fx_f_sub_filter_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fx_f_sub_filters {
    display: flex;
    gap: 10px;
}

.fx_f_sub_filter_btn {
    padding: 8px 16px;
    border: none;
    background-color: transparent;
    color: #666666;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fx_f_sub_filter_btn:hover {
    background-color: #f5f5f5;
}

.fx_f_sub_filter_btn.fx_f_sub_active {
    background-color: #000000;
    color: white;
}

.fx_f_sub_nav_item.fx_f_sub_active a{
    background-color: rgba(206, 206, 206, 0.1);
}

.fx_f_sub_dropdown_btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: white;
    color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Websites Grid Styles */
.fx_f_sub_websites_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.fx_f_sub_website_card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

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

.fx_f_sub_website_preview {
    height: 180px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fx_f_sub_website_preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fx_f_sub_website_name_preview {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    text-align: center;
    padding: 20px;
    word-break: break-word;
}

.fx_f_sub_website_info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.fx_f_sub_website_name {
    font-weight: 500;
    color: #333333;
}

.fx_f_sub_website_meta {
    padding: 10px 15px;
    font-size: 12px;
    color: #666666;
}

.fx_f_sub_login_date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fx_f_sub_more_options {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.fx_f_sub_more_options:hover {
    background-color: #f5f5f5;
}

.fx_f_sub_more_options .material-symbols-outlined {
    font-size: 24px;
    color: #666666;
}

.fx_f_sub_empty {
    border: 2px dashed #e0e0e0;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fx_f_sub_website_card[data-favorite="true"] {
    border: 2px solid #ffd700;
}

.fx_f_sub_website_card[data-favorite="true"] .fx_f_sub_website_name::before {
    content: "★";
    color: #ffd700;
    margin-right: 5px;
}

/* Profile Page Styles */
.fx_f_sub_profile_container {
    max-width: 800px;
}

.fx_f_sub_account_details {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.fx_f_sub_section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.fx_f_sub_section_header h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.fx_f_sub_edit_btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #333333;
}

.fx_f_sub_user_info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.fx_f_sub_avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fx_f_sub_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.fx_f_sub_upload_btn {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.fx_f_sub_avatar:hover .fx_f_sub_upload_btn {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.fx_f_sub_upload_btn .material-symbols-outlined {
    font-size: 30px;
    color: white;
}

.fx_f_sub_avatar:not(:has(img)) .fx_f_sub_upload_btn {
    opacity: 1;
    background-color: transparent;
}

.fx_f_sub_avatar:not(:has(img)) .fx_f_sub_upload_btn .material-symbols-outlined {
    color: #666;
}

/* Estilos para el input de edición */
.fx_f_sub_edit_input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.fx_f_sub_user_details {
    flex: 1;
}

.fx_f_sub_detail_item {
    margin-bottom: 15px;
}

.fx_f_sub_label {
    display: block;
    color: #999;
    margin-bottom: 5px;
}

.fx_f_sub_value {
    font-weight: 500;
}

.fx_f_sub_verified {
    display: inline-flex;
    align-items: center;
    color: #2ecc71;
    font-size: 14px;
    margin-left: 10px;
}

.fx_f_sub_verified .material-symbols-outlined {
    margin-right: 5px;
    font-size: 18px;
}

/* Estilos para el mensaje de no hay sitios web */
.fx_f_sub_no_websites {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 20px auto;
    max-width: 500px;
}

.fx_f_sub_no_websites .material-symbols-outlined {
    font-size: 48px;
    color: #666666;
    margin-bottom: 20px;
}

.fx_f_sub_no_websites p {
    color: #666666;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* Estilos para el menú de ordenamiento */
.sort-dropdown {
    position: relative;
    display: inline-block;
}

.sort-dropdown .fx_f_sub_dropdown_btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: white;
    color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.sort-dropdown .fx_f_sub_dropdown_btn:hover {
    border-color: #999999;
    background-color: #f8f8f8;
}

.sort-dropdown .sort-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 5px;
    border: 1px solid #e0e0e0;
    display: none;
}

.sort-dropdown.active .sort-menu {
    display: block;
}

.sort-dropdown .sort-menu a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #333333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
}

.sort-dropdown .sort-menu a:hover {
    background-color: #f8f8f8;
    color: #000000;
}

/* Estilos para el menú de opciones del sitio web */
.website-dropdown {
    position: relative;
    display: inline-block;
}

.website-dropdown .website-menu {
    position: absolute;
    right: 30px;
    top: -170px;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
    border: 1px solid #e0e0e0;
    display: none;
}

.website-dropdown.active .website-menu {
    display: block;
}

.website-dropdown .website-menu a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #333333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
}

.website-dropdown .website-menu a:hover {
    background-color: #f8f8f8;
    color: #000000;
}

.website-dropdown .website-menu .material-symbols-outlined {
    margin-right: 12px;
    font-size: 20px;
    color: #666666;
}

/* Estilos para la vista previa del sitio web */
.fx_f_sub_website_preview {
    height: 180px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fx_f_sub_website_preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fx_f_sub_website_name_preview {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    text-align: center;
    padding: 20px;
    word-break: break-word;
}

/* Estilos para favoritos */
.fx_f_sub_website_card[data-favorite="true"] {
    border: 2px solid #ffd700;
}

.fx_f_sub_website_card[data-favorite="true"] .fx_f_sub_website_name::before {
    content: "★";
    color: #ffd700;
    margin-right: 5px;
}

/* Estilos para el modal de subida de imágenes */
.swift-sub-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.swift-sub-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.swift-sub-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.swift-sub-dropzone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    margin: 20px 0;
}

.swift-sub-dropzone:hover {
    border-color: #2196F3;
    background-color: #f0f7ff;
}

.swift-sub-dropzone.highlight {
    border-color: #2196F3;
    background-color: #e3f2fd;
}

.swift-sub-dropzone .material-symbols-outlined {
    font-size: 48px;
    color: #666;
    margin-bottom: 10px;
}

.swift-sub-dropzone p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.swift-sub-file-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.swift-sub-preview {
    margin: 20px 0;
    text-align: center;
}

.swift-sub-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 4px;
}

.swift-sub-preview-actions {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.swift-sub-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.swift-sub-btn-primary {
    background-color: #2196F3;
    color: white;
}

.swift-sub-uploading {
    text-align: center;
    margin: 20px 0;
}

.swift-sub-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto 15px;
}

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



/* Inicio de Estilos de Billing para crear el sistema */
.fx_f_subBilling_sidebar {
    width: 200px;
    background-color: #1d2327;
    color: white;
    height: 100vh;
    padding: 20px 0;
}

.fx_f_subBilling_sidebar_logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.fx_f_subBilling_menu_item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.fx_f_subBilling_menu_item.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #2271b1;
}

.fx_f_subBilling_menu_item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.fx_f_subBilling_menu_icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.fx_f_subBilling_user_info {
    padding: 10px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    width: 200px;
}

.fx_f_subBilling_main {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    height: 100vh;
}

.fx_f_subBilling_header {
    margin-bottom: 20px;
    border-bottom: 1px solid #c3c4c7;
    padding-bottom: 15px;
}

.fx_f_subBilling_section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.fx_f_subBilling_section_title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1d2327;
    font-weight: 500;
}

.fx_f_subBilling_status_bar {
    display: flex;
    margin-bottom: 20px;
}

.fx_f_subBilling_status_item {
    flex: 1;
    padding: 15px;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #f6f7f7;
}

.fx_f_subBilling_status_item:last-child {
    margin-right: 0;
}

.fx_f_subBilling_status_label {
    font-size: 14px;
    color: #646970;
    margin-bottom: 5px;
}

.fx_f_subBilling_status_value {
    font-size: 20px;
    font-weight: 500;
}

.fx_f_subBilling_status_active {
    color: #00a32a;
}

.fx_f_subBilling_status_warning {
    color: #dba617;
}

.fx_f_subBilling_status_expired {
    color: #d63638;
}

.fx_f_subBilling_table {
    width: 100%;
    border-collapse: collapse;
    overflow: auto;
}

.fx_f_subBilling_table th, 
.fx_f_subBilling_table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #f6f7f7;
}

.fx_f_subBilling_table th {
    font-weight: 500;
    color: #646970;
    font-size: 14px;
}

.fx_f_subBilling_badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.fx_f_subBilling_badge_active {
    background-color: rgba(0, 163, 42, 0.1);
    color: #00a32a;
}

.fx_f_subBilling_badge_expired {
    background-color: rgba(214, 54, 56, 0.1);
    color: #d63638;
}

.fx_f_subBilling_badge_refunded {
    background-color: rgba(255, 222, 33, 0.7);
    color: #000000;
}

.fx_f_subBilling_btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.fx_f_sub_validate_plan {
    background-color: #1e872b;
    color: white;
}

.fx_f_sub_validate_plan:hover {
    filter: brightness(1.1);
}

.fx_f_subBilling_btn_primary {
    background-color: #2271b1;
    color: white;
}

.fx_f_subBilling_btn_primary:hover {
    background-color: #135e96;
}

.fx_f_subBilling_btn_secondary {
    background-color: #f0f0f1;
    color: #1d2327;
}

.fx_f_subBilling_btn_secondary:hover {
    background-color: #c3c4c7;
}

.fx_f_subBilling_form_group {
    margin-bottom: 15px;
}

.fx_f_subBilling_form_label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.fx_f_subBilling_form_control {
    display: flex;
    align-items: center;
}

.fx_f_subBilling_switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
}

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

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

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

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

input:checked + .fx_f_subBilling_slider:before {
    transform: translateX(26px);
}
/* Fin de Estilos de Billing para crear el sistema */



/* Inicio de Estilos de Support para crear el sistema */
.fx_f_subSupport_sidebar {
    width: 200px;
    background-color: #1d2327;
    color: white;
    height: 100vh;
    padding: 20px 0;
}

.fx_f_subSupport_sidebar_logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.fx_f_subSupport_menu_item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.fx_f_subSupport_menu_item.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #2271b1;
}

.fx_f_subSupport_menu_item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.fx_f_subSupport_menu_icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.fx_f_subSupport_user_info {
    padding: 10px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    width: 200px;
}

.fx_f_subSupport_main {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    height: 100vh;
}

.fx_f_subSupport_header {
    margin-bottom: 20px;
    border-bottom: 1px solid #c3c4c7;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fx_f_subSupport_section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.fx_f_subSupport_section_title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1d2327;
    font-weight: 500;
}

.fx_f_subSupport_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.fx_f_subSupport_col_6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.fx_f_subSupport_col_12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
}

.fx_f_subSupport_form_group {
    margin-bottom: 20px;
}

.fx_f_subSupport_form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.fx_f_subSupport_form_control {
    width: 100%;
    padding: 10px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

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

.fx_f_subSupport_form_help {
    font-size: 12px;
    color: #646970;
    margin-top: 5px;
}

.fx_f_subSupport_form_error {
    font-size: 12px;
    color: #d63638;
    margin-top: 5px;
    display: none;
}

.fx_f_subSupport_btn {
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.fx_f_subSupport_btn_primary {
    background-color: #2271b1;
    color: white;
}

.fx_f_subSupport_btn_primary:hover {
    background-color: #135e96;
}

.fx_f_subSupport_btn_secondary {
    background-color: #f0f0f1;
    color: #1d2327;
}

.fx_f_subSupport_btn_secondary:hover {
    background-color: #c3c4c7;
}

.fx_f_subSupport_card {
    border: 1px solid #c3c4c7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fx_f_subSupport_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fx_f_subSupport_card_header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.fx_f_subSupport_card_icon {
    width: 40px;
    height: 40px;
    background-color: #f6f7f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.fx_f_subSupport_card_title {
    font-size: 16px;
    font-weight: 500;
}

.fx_f_subSupport_card_body {
    color: #646970;
    font-size: 14px;
    line-height: 1.5;
}

.fx_f_subSupport_card_footer {
    margin-top: 15px;
    text-align: right;
}

.fx_f_subSupport_status_badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.fx_f_subSupport_status_badge_success {
    background-color: rgba(0, 163, 42, 0.1);
    color: #00a32a;
}

.fx_f_subSupport_status_badge_warning {
    background-color: rgba(219, 166, 23, 0.1);
    color: #dba617;
}

.fx_f_subSupport_status_badge_danger {
    background-color: rgba(214, 54, 56, 0.1);
    color: #d63638;
}

.fx_f_subSupport_tabs {
    display: flex;
    border-bottom: 1px solid #c3c4c7;
    margin-bottom: 20px;
}

.fx_f_subSupport_tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-right: 10px;
    transition: all 0.3s;
}

.fx_f_subSupport_tab.active {
    border-bottom-color: #2271b1;
    color: #2271b1;
}

.fx_f_subSupport_tab_content {
    display: none;
}

.fx_f_subSupport_tab_content.active {
    display: block;
}

.fx_f_subSupport_faq_item {
    border-bottom: 1px solid #c3c4c7;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.fx_f_subSupport_faq_question {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fx_f_subSupport_faq_question:after {
    content: "+";
    font-size: 18px;
}

.fx_f_subSupport_faq_question.active:after {
    content: "-";
}

.fx_f_subSupport_faq_answer {
    margin-top: 10px;
    display: none;
    line-height: 1.5;
    color: #646970;
}

.fx_f_subSupport_faq_answer.active {
    display: block;
}

.fx_f_subSupport_alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    display: none;
}

.fx_f_subSupport_alert_success {
    background-color: rgba(0, 163, 42, 0.1);
    color: #00a32a;
    border: 1px solid rgba(0, 163, 42, 0.2);
}

.fx_f_subSupport_alert_danger {
    background-color: rgba(214, 54, 56, 0.1);
    color: #d63638;
    border: 1px solid rgba(214, 54, 56, 0.2);
}

.fx_f_subSupport_alert_icon {
    margin-right: 10px;
    font-size: 16px;
}

.fx_f_subSupport_ticket_list {
    margin-top: 20px;
}

.fx_f_subSupport_ticket_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #c3c4c7;
}

.fx_f_subSupport_ticket_info {
    flex: 1;
}

.fx_f_subSupport_ticket_subject {
    font-weight: 500;
    margin-bottom: 5px;
}

.fx_f_subSupport_ticket_meta {
    font-size: 12px;
    color: #646970;
}

.fx_f_subSupport_loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #2271b1;
    animation: fx_f_subSupport_spin 1s ease-in-out infinite;
    margin-left: 10px;
    display: none;
}

@keyframes fx_f_subSupport_spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .fx_f_subSupport_col_6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .fx_f_subSupport_sidebar {
        width: 60px;
    }
    
    .fx_f_subSupport_sidebar_logo,
    .fx_f_subSupport_menu_item span,
    .fx_f_subSupport_user_info {
        display: none;
    }
    
    .fx_f_subSupport_menu_icon {
        margin-right: 0;
    }
    
    .fx_f_subSupport_menu_item {
        justify-content: center;
    }

    .fx_f_subBilling_status_bar {
        flex-direction: column;
    }
}
/* Fin de Estilos de Support para crear el sistema */





/* Estilos para el contenedor de búsqueda */
.fx_f_sub_search_container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 300px;
}

.fx_f_sub_search_container:focus-within {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.fx_f_sub_search_input {
    border: none;
    outline: none;
    padding: 4px 8px;
    font-size: 14px;
    color: #333333;
    background: transparent;
    width: 100%;
}

.fx_f_sub_search_input::placeholder {
    color: #999999;
}

.fx_f_sub_search_icon {
    color: #666666;
    font-size: 20px;
    margin-right: 8px;
    pointer-events: none;
}

/* Estilos para las tarjetas cuando están filtradas */
.fx_f_sub_website_card.fx_f_sub_hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

/* Estilos responsivos para la búsqueda */
@media (max-width: 768px) {
    .fx_f_sub_container {
        flex-direction: column;
    }
    
    .fx_f_sub_sidebar {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
    
    .fx_f_sub_navigation ul {
        display: flex;
        justify-content: space-around;
    }
    
    .fx_f_sub_nav_item a {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }
    
    .fx_f_sub_nav_item .material-symbols-outlined {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .fx_f_sub_websites_grid {
        grid-template-columns: 1fr;
    }
    
    .fx_f_sub_user_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .fx_f_sub_filter_bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .fx_f_sub_filters {
        width: 100%;
        justify-content: center;
    }
    
    .fx_f_sub_sort {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .fx_f_sub_website_card {
        margin-bottom: 20px;
    }
    
    .fx_f_sub_search_container {
        width: 100%;
        margin: 0 10px;
    }
}

/* Estilos para la información del perfil en el menú */
.fx_f_sub_profile_info {
    display: flex;
    flex-direction: column;
    /* margin-left: 10px; */
    flex: 1;
}

.fx_f_sub_profile_name {
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 4px;
}

.fx_f_sub_plan_info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fx_f_sub_plan_type {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.2;
}

.fx_f_sub_licenses {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.2;
}

/* Estilos responsivos para el perfil */
@media (max-width: 768px) {
    .fx_f_sub_profile_info {
        margin-left: 8px;
    }
    
    .fx_f_sub_profile_name {
        font-size: 13px;
    }
    
    .fx_f_sub_plan_type {
        font-size: 11px;
    }
    
    .fx_f_sub_licenses {
        font-size: 10px;
    }
}

/* Estilos para el modo de edición */
.fx_f_sub_editing {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fx_f_sub_editing:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Modal de renovación de licencia para Billing */
.fx_f_subBilling_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.fx_f_subBilling_modal_content {
    background: white;
    border-radius: 10px;
    width: 95vw;
    max-height: 95vh;
    min-height: 300px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
}
.fx_f_subBilling_modal_close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    z-index: 2;
    transition: color 0.2s;
}
.fx_f_subBilling_modal_close:hover {
    color: #d63638;
}
@media (max-width: 600px) {
    .fx_f_subBilling_modal_content {
        max-width: 98vw;
        width: 98vw;
        padding: 20px 5px 10px 5px;
    }
    .fx_f_subBilling_modal_close {
        top: 8px;
        right: 12px;
        font-size: 2rem;
    }
}

/* Descargas - Listado */
.fx_f_sub_download-container {
    width: 100%;
    margin: 0 auto 30px auto;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.fx_f_sub_download-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px 32px;
    gap: 24px;
}
.fx_f_sub_download-version {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 90px;
}
.fx_f_sub_download-date {
    color: #444;
    min-width: 160px;
    font-size: 1rem;
}
.fx_f_sub_download-notes {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 1rem;
    gap: 8px;
    flex: 1 1 auto;
}
.fx_f_sub_download-btn-wrap {
    min-width: 160px;
    display: flex;
    justify-content: flex-end;
}
.fx_f_sub_download-btn {
    background: white;
    color: #750ef4;
    border: 2px solid #750ef4;
    border-radius: 8px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.fx_f_sub_download-btn:hover {
    background: #750ef4;
    color: white;
}
.fx_f_sub_download-empty {
    text-align: center;
    color: #888888;
    font-size: 1.1rem;
    padding: 40px 0;
}

.fx_f_sub_download-modal {
    position: fixed;
    z-index: 99999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.35);
    display: flex; align-items: center; justify-content: center;
}
.fx_f_sub_download-modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 0 0 24px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
    max-height: 600px;
    animation: fx_f_sub_download_modal_anim 0.18s cubic-bezier(.4,0,.2,1);
}
@keyframes fx_f_sub_download_modal_anim {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fx_f_sub_download-modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 2rem;
    color: #e2e2e2;
    cursor: pointer;
    font-weight: bold;
    z-index: 2;
    transition: color 0.2s;
    background: none;
    border: none;
    outline: none;
}
.fx_f_sub_download-modal-close:hover {
    color: #d63638;
}
.fx_f_sub_download-modal-version {
    width: 100%;
    background: #750ef4;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
    padding: 16px 32px 12px 32px;
    margin-bottom: 0;
}
.fx_f_sub_download-modal-notes {
    padding: 24px 32px 0 32px;
    color: #222;
    font-size: 1.08rem;
    line-height: 1.6;
    width: 100%;
    min-height: 60px; 
    overflow-y: auto;
}

.fx_f_sub_download-notes-icon, .fx_f_sub_download-notes-link, .fx_f_sub_download-notes {
    cursor: pointer;
}
.fx_f_sub_download-notes-icon:hover, .fx_f_sub_download-notes-link:hover, .fx_f_sub_download-notes:hover {
    color: #750ef4;
}

@media (max-width: 600px) {
    .fx_f_sub_download-modal-content {
        min-width: 0;
        width: 98vw;
        padding: 0 0 10px 0;
    }
    .fx_f_sub_download-modal-version, .fx_f_sub_download-modal-notes {
        padding-left: 16px;
        padding-right: 16px;
    }
}