/* ========================================================================
 * MATCHOU PERFIS - ARQUIVO DE ESTILO v2.0 (FIX FINAL AGRESSIVO)
 * ======================================================================== */

/* --- GERAL --- */
body { background-color: transparent; }

/* --- RESTAURADO: ESTILOS DA PÁGINA DE MEMBROS (USER GRID) --- */
.matchou-user-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}
.user-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.user-card-image {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.user-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}
.user-card-info { font-size: 1.2em; font-weight: bold; }

/* =============================================================== */
/* --- PÁGINA DE PERFIL PÚBLICO (MODIFICADO) --- */
/* =============================================================== */
.matchou-profile-public-wrapper {
    /* (MODIFICADO) Aumentado para 900px para o layout de 2 colunas */
    max-width: 1200px; 
    margin: 20px auto; 
    padding: 0 20px;
    background-color: transparent; 
    color: #ccc;
}
.profile-gallery-wrapper {
    max-width: 600px; margin: 0 auto 25px auto;
}
.main-photo-carousel { 
    position: relative; width: 100%; aspect-ratio: 4 / 5;
    overflow: hidden; border-radius: 12px; background-color: transparent; 
}
.main-photo-carousel img { width: 100%; height: 100%; object-fit: cover; }

/* (MODIFICADO) Estilo para o nome do utilizador sobre a foto */
.profile-header-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 20px 20px;
    /* (CORRIGIDO) O gradiente estava com erro de sintaxe */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(#1c1c38) 100%);
    color: white; 
    text-align: center;
}
.profile-header-overlay h1 {
    margin: 0; 
    font-size: 2.2em;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    /* (NOVO) Pedidos do utilizador */
    font-family: "Trebuchet MS", sans-serif;
    color: #FFFFFF;
}

.carousel-arrow { 
    position: absolute; top: 50%; transform: translateY(-50%); 
    background-color: transparent; 
    padding: 8px 15px; cursor: pointer; font-size: 2em; z-index: 10;
    border-radius: 50%;
}
.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

/* BOTÕES: Ícones e Texto */
.button-icon { display: none; }
.profile-buttons-group { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; }
.profile-buttons-group .button { flex: 1; text-align: center; padding: 10px 8px; font-weight: bold; display: flex; justify-content: center; align-items: center; }

.profile-details-card {
    background-color: #32244d; padding: 25px; border-radius: 8px;
    margin-bottom: 20px;
}
.profile-details-card h3 { color: #fff; margin-top: 0; border-bottom: 1px solid #242944; padding-bottom: 10px; }
.profile-details-card p, .details-list li { color: #b0b0b0; line-height: 1.6; }
.details-list { list-style: none; padding: 0; }
.details-list li strong { color: #e0e0e0; }

/* --- RESTAURADO: ESTILOS DO MODAL DE FLERTES --- */
.modal-overlay {
    display: none; position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center; align-items: center; z-index: 1000;
}
.modal-content { 
    background-color: #fff; padding: 25px; border-radius: 10px; 
    width: 90%; max-width: 500px; color: #333; 
}
.modal-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #ddd; }
.close-modal { font-size: 2em; color: #aaa; cursor: pointer; }
.modal-body { max-height: 60vh; overflow-y: auto; }
.flirt-item { display: flex; align-items: center; padding: 10px; border-bottom: 1px solid #eee; }
.flirt-item img { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; }
.flirt-item .flirt-info { flex-grow: 1; }
.flirt-item .flirt-cost { font-weight: bold; margin-right: 15px; }
.flirt-item .send-flirt-btn { background-color: #8A2BE2; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; }

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 767px) {
    .matchou-user-grid-container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .user-card { height: 220px; }

    /* (MODIFICADO) A largura máxima de 900px não se aplica ao mobile */
    .matchou-profile-public-wrapper { 
        max-width: 100%; /* Ocupa 100% no mobile */
        padding: 0; 
        margin-top: 0; 
    }
    
    .profile-gallery-wrapper { max-width: 100%; margin-bottom: 25px; }
    .main-photo-carousel { border-radius: 0; }
    
    .profile-header-overlay h1 { font-size: 1.8em; } /* Nome mais pequeno no telemóvel */

    .profile-buttons-group, .profile-details-card { padding-left: 20px; padding-right: 20px; }
    
    .profile-buttons-group .button { min-width: 50px; flex: 1; } /* Botões mais flexíveis */
    .profile-buttons-group .button .button-text { display: none; }
    .profile-buttons-group .button .button-icon { display: inline; font-size: 1.5em; }
}
/* --- PÁGINA DE FAVORITOS (NOVO DESIGN) --- */
.matchou-favorites-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinha no topo, não no centro da tela */
    min-height: calc(100vh - 100px); /* Ajusta a altura mínima */
    padding: 20px;
    background-color: #1a1a2e;
}

.favorite-card-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Largura máxima do card */
    margin-top: 50px; /* Espaço do topo */
}

.favorite-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 12; /* Proporção mais alta, como no Tinder/Bumble */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #1a1a1a;
}

.favorite-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.favorite-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    text-align: center;
}

.favorite-name-age {
    margin: 0 0 15px 0;
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.favorite-actions {
    display: flex;
    justify-content: center;
    gap: 10px; /* Espaço entre os botões */
}

.favorite-action-button {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo semi-transparente */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Borda clara */
    color: #fff;
    border-radius: 50%; /* Botões redondos */
    width: 55px; /* Tamanho dos botões */
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em; /* Tamanho do ícone */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.favorite-action-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Cores específicas para botões (opcional, mas legal) */
.action-chat { background-color: #007bff; border-color: #007bff; }
.action-chat:hover { background-color: #0056b3; border-color: #0056b3; }
.action-unfavorite { background-color: #dc3545; border-color: #dc3545; }
.action-unfavorite:hover { background-color: #b02a37; border-color: #b02a37; }
.action-next, .action-previous, .action-favorite-profile {
    background-color: rgba(255, 255, 255, 0.1); /* Padrão */
    border-color: rgba(255, 255, 255, 0.3);
}
.action-next:hover, .action-previous:hover, .action-favorite-profile:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}


.no-favorites-message-display {
    text-align: center;
    color: #ccc;
    margin-top: 50px;
    max-width: 400px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.no-favorites-message-display .button {
    margin-top: 20px;
    background-color: #8A2BE2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.no-favorites-message-display .button:hover {
    background-color: #7a1ed1;
}

/* Responsividade para o card de favoritos */
@media (max-width: 767px) {
    .matchou-favorites-wrapper {
        padding: 10px;
        align-items: center; /* Centraliza verticalmente no mobile */
        margin-top: 0;
    }
    .favorite-card-container {
        margin-top: 20px;
        max-width: 350px; /* Card um pouco menor no mobile */
    }
    .favorite-action-button {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }
}

/* ========================================================================
 * NOVO ESTILO - PÁGINA DE EDIÇÃO DE PERFIL (COM ABAS)
 * ======================================================================== */

/* -- A Fonte que Pediu -- */
.matchou-profile-edit-wrapper {
    font-family: "Trebuchet MS", sans-serif;
}

/* -- O Wrapper Principal -- */
.matchou-profile-edit-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #1a1a2e; /* Fundo escuro da referência */
    border-radius: 8px;
    color: #ccc;
}
.matchou-profile-edit-wrapper h2 {
    color: #fff;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}
.matchou-profile-edit-wrapper p {
    color: #aaa;
    margin-bottom: 20px;
}

/* -- Navegação das Abas -- */
.edit-profile-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #444;
}
.edit-profile-tabs .tab-link {
    font-family: "Trebuchet MS", sans-serif;
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: #aaa;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.edit-profile-tabs .tab-link:hover {
    color: #fff;
}
.edit-profile-tabs .tab-link.active {
    color: #fff;
    border-bottom-color: #007bff; /* Azul da referência */
}

/* -- Controlo das Abas (JS vai tratar disto) -- */
.tab-content {
    display: none; /* Escondido por defeito */
}
.tab-content.active {
    display: block; /* Visível quando ativo */
}

/* -- Grelha de Duas Colunas (para a aba "Meu perfil") -- */
.form-grid-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
/* No telemóvel, fica com 1 coluna */
@media (max-width: 767px) {
    .form-grid-columns {
        grid-template-columns: 1fr;
    }
}

/* -- Estilos dos Campos do Formulário -- */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: #ccc;
    font-weight: bold;
    margin-bottom: 8px;
}
.matchou-profile-edit-wrapper input[type="text"],
.matchou-profile-edit-wrapper input[type="date"],
.matchou-profile-edit-wrapper input[type="password"],
.matchou-profile-edit-wrapper select,
.matchou-profile-edit-wrapper textarea {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    border-radius: 5px;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 1em;
    box-sizing: border-box; /* Importante para o padding não quebrar o layout */
}
.matchou-profile-edit-wrapper textarea {
    min-height: 120px;
}

/* -- Botões -- */
.matchou-profile-edit-wrapper .button {
    font-family: "Trebuchet MS", sans-serif;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
}
.matchou-profile-edit-wrapper .button:hover {
    background-color: #0056b3;
}
.matchou-profile-edit-wrapper .button-danger {
    background-color: #dc3545;
}
.matchou-profile-edit-wrapper .button-danger:hover {
    background-color: #a71d2a;
}
/* --- ESTILOS ADICIONAIS PARA A PÁGINA DE EDIÇÃO DE PERFIL --- */

/* Grelha de Fotos (Ponto 3) */
.edit-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.photo-slot {
    border: 2px dashed #444;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background-color: #1a1a2e;
}
.photo-slot .image-preview-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #333;
}
.photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-slot .button {
    width: 100%;
    padding: 8px;
    font-size: 0.9em;
}

/* Cor do Botão "Excluir" (Ponto 4) */
.matchou-profile-edit-wrapper .button-danger {
    background-color: #a71d2a; /* Azul escuro não é bom para exclusão, usamos vermelho escuro */
    border: 1px solid #dc3545;
}
.matchou-profile-edit-wrapper .button-danger:hover {
    background-color: #dc3545;
    border-color: #a71d2a;
}

/* ========================================================================
 * ESTILOS RESPONSIVOS PARA [matchou_edit_profile]
 * ======================================================================== */

/* Wrapper principal */
.matchou-profile-edit-wrapper {
    max-width: 900px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* Estilo das Abas (Tabs) */
.edit-profile-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    /* Para mobile, permite scroll horizontal se as abas não couberem */
    overflow-x: auto;
    white-space: nowrap;
}
.edit-profile-tabs .tab-link {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #888;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px; /* Alinha com a borda principal */
}
.edit-profile-tabs .tab-link.active {
    color: #333;
    border-bottom-color: #5a2d82; /* Cor principal (ex: roxo do mp-creditos) */
}

/* Conteúdo das Abas */
.tab-content {
    display: none;
    animation: fadeIn 0.3s;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Layout das Colunas do Formulário (Aba Perfil) */
.form-grid-columns {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas em desktop */
    gap: 20px;
}

/* Campos do Formulário */
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Garante que o padding não quebre o layout */
}
.form-section {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

/* Grid de Fotos (Aba Fotos) */
.edit-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 colunas: 1 principal, 3 galeria */
    gap: 15px;
}
.photo-slot {
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.photo-slot .image-preview-wrapper {
    width: 100%;
    padding-top: 100%; /* Truque para manter o aspecto 1:1 */
    position: relative;
    background-color: #f4f4f4;
    border-radius: 5px;
    margin-bottom: 10px;
}
.photo-slot .image-preview-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra o espaço */
    border-radius: 5px;
}
.photo-slot .button {
    width: 100%;
    box-sizing: border-box;
}

/* Botões */
.button-primary {
    background-color: #5a2d82;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
.button-primary:hover {
    background-color: #402060;
}
.button-danger {
    background-color: #d9534f;
    color: white;
}
.button-danger:hover {
    background-color: #c9302c;
}

/* Feedback (Spinner e Mensagens) */
.form-submit-feedback .spinner {
    display: none; /* O JS deve mostrar */
}
.form-submit-feedback .spinner.is-active {
    display: inline-block;
}
.form-message {
    font-weight: 600;
    margin-top: 10px;
}
.form-message.success {
    color: green;
}
.form-message.error {
    color: red;
}


/* ========================================================================
 * MEDIA QUERIES (A Magia do Mobile)
 * ======================================================================== */
@media (max-width: 768px) {
    
    /* Faz as colunas do formulário ficarem uma em cima da outra */
    .form-grid-columns {
        grid-template-columns: 1fr; /* 1 coluna */
    }

    /* Faz a grid de fotos ter 2 colunas em vez de 4 */
    .edit-photo-grid {
        grid-template-columns: 1fr 1fr; /* 2 colunas */
    }
    
    /* A foto principal ocupa a linha inteira */
    .photo-slot.main-photo-slot {
        grid-column: 1 / -1; /* Ocupa todas as colunas da grid */
    }
}


/* ========================================================================
 * (NOVO) ESTILOS DA PÁGINA DE DESCOBERTA (ENCONTRAR) - v2.0 (ÍCONES FORA + FIX MOBILE)
 * ======================================================================== */

.matchou-discovery-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 100px);
    padding: 20px;
    background-color: #1a1a2e; /* Fundo escuro */
    overflow: hidden;
}

.discovery-card-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
}

/* O Card (Foto) */
.discovery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 13;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #1a1a2e; /* Fundo da foto branco, como pediu */
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.discovery-card.exiting {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
}
.discovery-card-image {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* O Nome (Sobre a Foto) - Mantém os ajustes anteriores */
.discovery-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 20px 20px; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    text-align: center;
}
.discovery-name-age {
    margin: 0;
    font-size: 1.9em;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    color: #fff; 
    font-family: "Trebuchet MS", sans-serif;
}

/* ========================================================================
 * (CORRIGIDO) DESIGN DOS BOTÕES (AGORA FORA DO CARD + FIX MOBILE)
 * ======================================================================== */

.discovery-actions {
    /* (MUDADO) Botões em linha única */
    display: flex;
    flex-wrap: nowrap; /* Não quebra a linha (para o fix do mobile) */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Espaço entre os botões (Desktop) */
    padding: 25px 0; /* Espaço ABAIXO da foto */
}

.discovery-action-button {
    background-color: #333; /* Cor de fundo padrão */
    border: none;
    border-radius: 50%;
    width: 65px;  /* Tamanho padrão (Desktop) */
    height: 65px;
    
    /* (NOVO) Padding para a imagem do ícone */
    padding: 12px;
    box-sizing: border-box; /* Importante para o padding */

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none; /* Para os links <a> */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Regra para a imagem DENTRO do botão */
.discovery-action-button img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que o ícone caiba sem distorcer */
}


.discovery-action-button:hover {
    transform: scale(1.1); /* Efeito de hover (aumenta o círculo) */
    opacity: 0.9; 
}

/* --- Cores de Fundo por Botão (Mantém as cores) --- */
.action-unfavorite {
    background-color: #e74c3c; /* Vermelho */
}
.action-favorite-profile {
    background-color: #8A2BE2; /* Roxo */
}
.action-go-chat {
    background-color: #3498db; /* Azul */
}
.action-like {
    background-color: #E75480; /* Rosa */
}

/* (Mensagem "Sem Perfis" - mantida como está) */
.no-favorites-message-display {
    text-align: center; color: #ccc; margin-top: 50px;
    max-width: 400px; padding: 20px; background-color: #1a1a1a;
    border-radius: 8px;
}

/* ========================================================================
 * (ALTERADO) MEDIA QUERY PARA O FIX DO MOBILE v2.0
 * ======================================================================== */
 
/* (AJUSTADO) Mudei de 480px para 767px para abranger todos os telemóveis */
@media (max-width: 767px) {
    
    .discovery-actions {
        /* (NOVO) Distribui os botões uniformemente no ecrã */
        justify-content: space-around;
        gap: 10px !important; /* (Mantido) Espaço mínimo entre os botões */
    }
    
    .discovery-action-button {
        width: 45px !important; /* (Mantido) Tamanho do botão */
        height: 45px !important;
        padding: 6px !important; /* (Mantido) Padding do ícone */
    }
}

/* =============================================================== */
/* --- (NOVO) ESTILOS DO MENU LATERAL DO PAINEL (SHORTCODE) --- */
/* =============================================================== */
.matchou-dashboard-menu {
    background-color: #1a1a2e; /* Cor escura do painel */
    border-radius: 10px;
    padding: 20px 15px;
    color: #f0f0f0;
    min-height: 400px;
}
.menu-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.menu-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #5a2d82;
}
.menu-display-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.menu-nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-nav-links li a {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #aaa;
    font-size: 16px;
    transition: all 0.2s ease;
}
.menu-nav-links li a:hover,
.menu-nav-links li a.active { /* Adicione a classe .active na sua página atual se desejar */
    background-color: #5a2d82;
    color: #fff;
}
.menu-icon {
    font-size: 20px;
    margin-right: 15px;
    width: 25px; /* Alinhamento */
    text-align: center;
}

/* =============================================================== */
/* --- (NOVO) ESTILOS DA CARTEIRA (SHORTCODE) --- */
/* =============================================================== */
.matchou-wallet-wrapper {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Trebuchet MS", sans-serif;
}
.wallet-balance-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.wallet-tab {
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    color: #f0f0f0;
}
.wallet-tab .tab-title {
    font-size: 16px;
    color: #aaa;
    display: block;
    margin-bottom: 10px;
}
.wallet-tab .tab-balance {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}
.wallet-tab .tab-icon {
    font-size: 30px;
    display: block;
    margin-bottom: 15px;
}
.wallet-tab .tab-button {
    background-color: #5a2d82;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.2s;
}
.wallet-tab .tab-button:hover {
    background-color: #402060;
}
.wallet-tab .tab-description {
    font-size: 14px;
    color: #888;
    display: block;
    min-height: 40px; /* Para alinhar com o botão */
}
#wallet-tab-credits {
    border-bottom: 4px solid #5a2d82;
}
#wallet-tab-matchcoins {
    border-bottom: 4px solid #3498db;
}

/* Histórico */
.wallet-history {
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
}
.wallet-history h3 {
    color: #fff;
    margin-top: 0;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}
.wallet-history-table {
    width: 100%;
    border-collapse: collapse;
    color: #f0f0f0;
}
.wallet-history-table thead {
    border-bottom: 1px solid #555;
}
.wallet-history-table th {
    text-align: left;
    padding: 10px 8px;
    color: #aaa;
    font-size: 14px;
}
.wallet-history-table tbody tr:not(:last-child) {
    border-bottom: 1px solid #282828;
}
.wallet-history-table td {
    padding: 12px 8px;
    font-size: 15px;
}
.wallet-history-table .credit {
    color: #2ecc71; /* Verde */
    font-weight: bold;
}
.wallet-history-table .debit {
    color: #e74c3c; /* Vermelho */
    font-weight: bold;
}

/* Responsividade para Carteira e Histórico */
@media (max-width: 768px) {
    .wallet-balance-tabs {
        grid-template-columns: 1fr;
    }
    .wallet-history-table thead {
        display: none; /* Esconde cabeçalho em mobile */
    }
    .wallet-history-table tr {
        display: block;
        padding: 15px 0;
    }
    .wallet-history-table td {
        display: block;
        text-align: right;
        padding: 6px 0;
    }
    .wallet-history-table td[data-label] {
        position: relative;
        padding-left: 50%;
    }
    .wallet-history-table td[data-label]::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: #aaa;
    }
}

/* =============================================================== */
/* --- (NOVO) HISTÓRICO (SHORTCODE) COM ABAS + PAGINAÇÃO --- */
/* =============================================================== */
.matchou-transactions-wrapper {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Trebuchet MS", sans-serif;
}

.matchou-transactions-header {
    text-align: center;
    margin-bottom: 18px;
}

.matchou-transactions-title {
    margin: 0 0 18px 0;
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

/* === HISTÓRICO: BOTÕES EM FORMATO DE CARDS (lado a lado) === */
.matchou-transactions-tabs{
    display: flex;
    gap: 22px;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* Card botão */
.matchou-transactions-tab{
    flex: 1 1 260px;
    max-width: 360px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 26px;
    border-radius: 26px;

    border: 2px solid rgba(255,255,255,0.55);
    background: rgba(10, 8, 28, 0.20);

    color: #fff;
    text-decoration: none;

    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;

    box-shadow: 0 10px 22px rgba(0,0,0,0.35);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;

    position: relative;
    overflow: hidden;
}

/* “Base”/sombra suave (efeito da referência) */
.matchou-transactions-tab::after{
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -14px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.22);
    filter: blur(12px);
    opacity: .40;
}

.matchou-transactions-tab:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
    border-color: rgba(255,255,255,0.80);
}

/* Ativo (card roxo preenchido) */
.matchou-transactions-tab.active{
    background: rgba(90,45,130,0.95);
    border-color: rgba(255,255,255,0.80);
}

/* Mobile: 2 cards por linha */
@media (max-width: 640px){
    .matchou-transactions-tabs{
        justify-content: center;
        gap: 16px;
    }
    .matchou-transactions-tab{
        flex: 1 1 calc(50% - 16px);
        max-width: none;
        padding: 16px 16px;
        font-size: 18px;
        text-align: center;
    }
}

.matchou-pagination {
    margin-top: 18px;
    text-align: center;
}

.matchou-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    margin: 0 4px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1a1a2e;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.matchou-pagination .page-numbers.current {
    background: #5a2d82;
    border-color: #5a2d82;
}

.matchou-pagination .page-numbers:hover {
    border-color: #777;
}

@media (max-width: 768px) {
    .matchou-transactions-title {
        font-size: 32px;
    }
    .matchou-transactions-tab {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* =============================================================== */
/* --- (NOVO) Unificação Cor de Fundo (Editar Perfil / Encontrar) --- */
/* =============================================================== */

/* Aplica o fundo escuro do painel à página "Editar Perfil" */
.matchou-edit-profile-wrapper {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    max-width: 900px; /* Alinha com a largura da carteira */
    margin: 20px auto; /* Adiciona margem para não colar no topo */
}

/* Aplica o fundo escuro ao container do card na página "Encontrar" */
.matchou-discovery-wrapper .discovery-card-container {
    background-color: #1a1a2e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
}

/* =============================================================== */
/* --- (NOVO) Ajustes de Ícones de Imagem para o Menu --- */
/* =============================================================== */

.menu-icon {
    /* Ajusta o span para se alinhar com a imagem */
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 15px;
    text-align: center;
    line-height: 25px; /* Centraliza emojis (se ainda usar algum) */
}

.menu-icon img {
    /* Define o tamanho da sua imagem de ícone */
    width: 25px;
    height: 25px;
    object-fit: contain; /* Garante que a imagem caiba sem distorcer */
    vertical-align: middle; /* Alinha a imagem perfeitamente */
}

/*
================================================================================================
(INÍCIO DA MODIFICAÇÃO)
Esta secção SUBSTITUI o CSS mobile anterior pelo novo layout de GRELHA DE 3 COLUNAS
que você pediu, inspirado na imagem 'Screenshot_20251109-045938.png'.
================================================================================================
*/

/* =============================================================== */
/* --- (SUBSTITUÍDO) Menu do Painel - Layout Mobile (3 Colunas / App-Style) --- */
/* =============================================================== */

@media (max-width: 768px) {

    /* 1. Remove o padding do menu para a grelha preencher a tela */
    .matchou-dashboard-menu {
        padding: 10px;
    }

    /* 2. Transforma a lista <ul> em uma grelha de 3 colunas */
    .matchou-dashboard-menu .menu-nav-links ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 ícones por linha */
        gap: 10px; /* Espaçamento entre os ícones */
        padding-top: 10px; 
    }

    /* 3. Faz o link <a> virar um "bloco" vertical */
    .matchou-dashboard-menu .menu-nav-links li a {
        display: flex;
        flex-direction: column;   /* (IMPORTANTE) Ícone em cima, texto em baixo */
        align-items: center;       /* Centraliza horizontalmente */
        justify-content: center;   /* Centraliza verticalmente */
        height: 100px;             /* (NOVO) Altura maior para cada botão */
        padding: 15px 5px;         /* Padding interno */
        border-radius: 8px;
    }

    /* 4. (IMPORTANTE) Mostra o título do link novamente */
    .matchou-dashboard-menu .menu-nav-links .menu-title {
        display: block;      /* Mostra o título */
        font-size: 13px;     /* Fonte um pouco maior */
        margin-top: 10px;    /* (NOVO) Espaço entre ícone e texto */
        color: #ddd;
        text-align: center;
        font-weight: normal;
    }

    /* 5. Ajusta o ÍCONE (maior) */
    .matchou-dashboard-menu .menu-nav-links .menu-icon {
        margin-right: 0;       /* Remove a margem lateral */
        width: 32px;           /* (NOVO) Ícone maior */
        height: 32px;
    }

    /* 6. Ajusta a IMAGEM do ícone (maior) */
    .matchou-dashboard-menu .menu-nav-links .menu-icon img {
        width: 32px;
        height: 32px;
    }
    
    /* 7. (Opcional) Destaca o item ativo (como na sua imagem 'Screenshot_20251109-050954.png') */
    .matchou-dashboard-menu .menu-nav-links li.active a {
        background-color: #5a2d82; /* Fundo roxo */
    }
    .matchou-dashboard-menu .menu-nav-links li.active .menu-title {
        color: #fff; /* Texto branco */
        font-weight: bold;
    }
}
/* ========================================================================
 * (FIM DA MODIFICAÇÃO)
 * ========================================================================
 */
 
/* =============================================================== */
/* --- (CORREÇÃO 2) ESTILOS DO HEADER (AINDA MAIS FORTE) --- */
/* =============================================================== */

/* Garante que o container do shortcode dentro do Elementor 
   permita o alinhamento correto */
.elementor-widget-shortcode .elementor-widget-container {
    display: flex;
    justify-content: flex-end; /* Alinha tudo à direita da coluna */
    align-items: center;
}

/* Força o nosso widget a ser flex e a não quebrar a linha */
.matchou-header-widget {
    display: flex !important; /* Força o flex */
    align-items: center;
    flex-wrap: nowrap; /* Impede de quebrar a linha */
    gap: 15px; /* Espaço entre o ícone e a foto */
    justify-content: flex-end;
}

/* Estilo para o seu ícone de painel */
.matchou-header-widget a.header-icon-link img.header-panel-icon {
    width: 28px !important;
    height: 28px !important;
    vertical-align: middle;
    flex-shrink: 0; /* Não deixa o ícone encolher */
}

/* (CORRIGIDO) Regra mais forte para o link do avatar */
.matchou-header-widget a.header-avatar-link {
    display: block; /* Garante que o link se comporte */
    flex-shrink: 0; /* Não deixa o avatar encolher */
    width: 40px;
    height: 40px;
    border-radius: 50% !important; /* Arredonda o link */
    overflow: hidden; /* Esconde as bordas da imagem quadrada */
}

/* (CORRIGIDO) Regra mais forte para a IMAGEM do avatar */
.matchou-header-widget a.header-avatar-link img.header-avatar-pic {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #5a2d82;
    transition: transform 0.2s;
    vertical-align: middle;
    box-sizing: border-box;
    display: block !important;
}

/* Botão de Login (se deslogado) - Sem alteração */
.matchou-header-widget .header-login-button {
    background-color: #0e2044;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 14px;
}
.matchou-header-widget .header-login-button:hover {
    background-color: #402060;
}

/* =============================================================== */
/* --- (NOVO) ESTILOS DO FOOTER MOBILE (SHORTCODE) --- */
/* =============================================================== */

.matchou-mobile-footer-bar {
    display: none; /* Escondido no Desktop por padrão */
}

@media (max-width: 768px) {
    /* Mostra a barra no telemóvel */
    .matchou-mobile-footer-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #1a1a2e; /* Fundo escuro */
        border-top: 1px solid #333;
        
        position: fixed; /* Fixo no rodapé */
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px; /* Altura da barra */
        z-index: 999;
    }
    
    .mobile-footer-icon {
        opacity: 0.7; /* Ícones normais ficam semi-transparentes */
    }
    .mobile-footer-icon img {
        width: 28px;
        height: 28px;
    }
    
    /* Ícone da página ATIVA fica 100% opaco */
    .mobile-footer-icon.active {
        opacity: 1.0;
        transform: scale(1.1);
    }
    
    /* (IMPORTANTE) Adiciona espaço no final da página 
       para o conteúdo não ficar escondido atrás da barra */
    body {
        padding-bottom: 60px; /* Mesma altura da barra */
    }
}

/* =============================================================== */
/* --- (NOVO) ESTILOS DO MURAL DE PRESENTES [mural_de_presentes] --- */
/* =============================================================== */

/* (MODIFICADO) */
.gift-wall-container {
    display: grid;
    /* Define o tamanho MÁXIMO do card para 150px e o mínimo para 100px */
    grid-template-columns: repeat(auto-fit, minmax(100px, 150px));
    gap: 12px;
    max-width: 100%;
    padding: 10px 0;
    /* Alinha a grelha no centro (útil no desktop) */
    justify-content: center;
}

/* Mensagem de "sem presentes" */
.gift-wall-container.no-gifts p {
    color: #888;
    text-align: center;
    grid-column: 1 / -1; /* Ocupa todas as colunas */
}

.gift-card {
    background: #1a1a2e; /* Fundo escuro, como o da carteira */
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px;
    text-align: center;
    overflow: hidden;
    /* Efeito "flutuante" subtil */
    transition: transform 0.2s ease;
}
.gift-card:hover {
    transform: translateY(-3px);
}

/* (MODIFICADO) */
.gift-card-image {
    width: 100%;
    /* Força a altura para 74px e garante que a imagem caiba */
    height: 74px !important;
    object-fit: contain !important;
    margin-bottom: 6px;
}
.gift-card-description {
    font-size: 11px; /* Texto muito pequeno para mobile */
    color: #aaa;
    line-height: 1.3;
    word-wrap: break-word;
}
.gift-card-description strong {
    color: #ddd;
    font-weight: 600;
}

/* ========================================================================
 * INÍCIO: NOVO CSS PARA PERFIL PÚBLICO (Layout 2 Colunas e Sanfona)
 * ======================================================================== */

/* 1. O Layout Principal (Grelha) */
.profile-layout-grid {
    display: grid;
    grid-template-columns: 40% 1fr; /* 40% para foto/botões, resto para info */
    gap: 25px;
}

/* 2. Colunas */
.profile-left-column {
    /* (vazio) - O CSS existente de .profile-gallery-wrapper já funciona */
}
.profile-right-column {
    /* (vazio) */
}

/* 3. Ajuste dos Botões (que agora estão na coluna esquerda) */
.profile-left-column .profile-buttons-group {
    max-width: 550px; /* Alinha com a largura da galeria */
    margin: 0 auto; /* Centraliza */
    padding-top: 20px; /* Espaço depois da foto */
}

/* 4. Estilos do Efeito Sanfona (Accordion) */

/* O botão que o utilizador clica */
.accordion-toggle {
    background-color: #261c3b;
    color: #fff;
    cursor: pointer;
    padding: 18px 25px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #4a3b69;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.2s;
    
    /* Para a seta */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove a borda do primeiro item (se ele estiver dentro de um card) */
.profile-details-card .accordion-toggle:first-child {
    border-top: none;
    border-radius: 8px 8px 0 0;
}
.profile-details-card .accordion-toggle:last-of-type {
     border-bottom: none;
}


.accordion-toggle:hover,
.accordion-toggle.active {
    background-color: #120629;
}

/* A Seta (::after) */
.accordion-toggle::after {
    content: '▼'; /* Seta para baixo */
    font-size: 0.7em;
    color: #aaa;
    transition: transform 0.3s ease;
}

.accordion-toggle.active::after {
    transform: rotate(180deg); /* Roda a seta */
}

/* O Conteúdo (que abre e fecha) */
.accordion-content {
    padding: 0 25px; /* Mesmo padding do botão */
    background-color: #12203b;
    max-height: 0; /* Começa fechado */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
/* Estilo para quando a sanfona está aberta (JS vai adicionar 'display: block') */
.accordion-content.open {
    padding: 20px 25px; /* Adiciona padding quando aberto */
    max-height: 1000px; /* Valor alto para permitir o conteúdo */
    border-bottom: 1px solid #4a3b69;
}
/* Remove o padding do .profile-details-card que está a duplicar */
.profile-details-card {
    padding: 0; 
}


/* 5. Responsividade (Mobile) */
@media (max-width: 767px) {
    /* Faz a grelha ter 1 coluna */
    .profile-layout-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Remove a centralização e padding dos botões no mobile */
    .profile-left-column .profile-buttons-group {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
    
    /* (Importante) Adiciona a borda inferior ao último item no mobile */
    .profile-details-card .accordion-toggle:last-of-type {
        border-bottom: 1px solid #333;
    }
}
/* ========================================================================
 * FIM: NOVO CSS PARA PERFIL PÚBLICO
 * ======================================================================== */
 
 /* ========================================================================
 * INÍCIO: NOVO CSS PARA O MURAL DE PRESENTES PÚBLICO
 * ======================================================================== */

/* O Wrapper principal (reutiliza o estilo do perfil) */
.public-gift-wall-wrapper {
    max-width: 900px; /* Mesma largura do perfil */
}

/* O layout de 2 colunas (só Desktop) */
@media (min-width: 768px) {
    .public-gift-wall-layout {
        display: grid;
        grid-template-columns: 300px 1fr; /* Coluna da foto (fixa) + grelha */
        gap: 30px;
    }

    /* Esconde o cabeçalho mobile no desktop */
    .gift-wall-header-mobile {
        display: none;
    }

    /* Estilo da coluna esquerda (Desktop) */
    .gift-wall-user-info {
        text-align: center;
    }
    .gift-wall-avatar-desktop img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
        aspect-ratio: 4 / 5;
        margin-bottom: 15px;
    }
    .gift-wall-avatar-desktop h2 {
        color: #fff;
        font-family: "Trebuchet MS", sans-serif;
        font-size: 1.8em;
    }
    
    .gift-wall-grid-title-desktop {
        color: #fff;
        font-size: 1.5em;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
    }
}

/* Grelha dos Presentes (Comum a Mobile e Desktop) */
.public-gift-grid {
    display: grid;
    /* Grelha responsiva de presentes */
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}
.public-gift-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    border: 1px solid #333;
}
.public-gift-item img {
    width: 100%;
    height: 74px; /* Tamanho fixo, como no outro mural */
    object-fit: contain;
    margin-bottom: 8px;
}
.public-gift-item span {
    font-size: 12px;
    color: #aaa;
    word-break: break-word;
}

/* Layout Mobile (Até 767px) */
@media (max-width: 768px) {
    .public-gift-wall-wrapper {
        padding: 0; /* Remove padding no mobile */
    }
    
    /* Esconde a versão desktop */
    .gift-wall-avatar-desktop,
    .gift-wall-grid-title-desktop {
        display: none;
    }

    /* Estilo do Cabeçalho Mobile (Flexbox) */
    .gift-wall-header-mobile {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background-color: #1a1a1a;
        border-bottom: 1px solid #333;
    }
    .gift-wall-header-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%; /* Foto circular */
        object-fit: cover;
        border: 2px solid #5a2d82;
    }
    .gift-wall-header-title {
        color: #fff;
        font-size: 1.2em;
        line-height: 1.3;
        margin: 0;
    }
    
    /* Padding para a grelha no mobile */
    .gift-wall-grid-container {
        padding: 20px;
    }
}

/* ========================================================================
 * PERSONALIZAÇÃO DE ÍCONES + TEXTO NO MOBILE (PERFIL PÚBLICO)
 * ======================================================================== */

@media (max-width: 768px) {
    
    /* 1. O Botão (Container): Organiza Ícone em cima e Texto em baixo */
    .profile-buttons-group .button {
        display: flex !important;
        flex-direction: column !important; /* Coluna vertical */
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;    /* Altura ajustável */
        padding: 8px 4px !important; /* Espaçamento interno */
        min-width: 70px; /* Largura mínima para o texto não quebrar feio */
    }

    /* 2. O Texto do Botão: Faz aparecer novamente (pequeno) */
    .profile-buttons-group .button .button-text {
        display: block !important; /* Força o texto a aparecer */
        font-size: 11px !important; /* Tamanho da fonte */
        margin-top: 5px !important; /* Espaço entre o ícone e o texto */
        color: #ddd !important;     /* Cor do texto */
        line-height: 1.1 !important;
        font-weight: normal !important;
        text-transform: uppercase;  /* Opcional: deixa em maiúsculas fica mais elegante */
        letter-spacing: 0.5px;
    }

    /* 3. O Ícone: Imagem de fundo */
    .profile-buttons-group .button .button-icon {
        color: transparent !important; /* Esconde o emoji original */
        display: inline-block !important;
        
        /* Tamanho do ícone (ajuste se quiser maior/menor) */
        width: 45px;   
        height: 45px;  
        
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0 !important; /* Remove margens laterais */
    }

    /* --- DEFINIÇÃO DAS IMAGENS (Seus Links) --- */

    /* Ícone de MENSAGEM */
    .action-chat .button-icon {
        background-image: url('https://matchou.com.br/wp-content/uploads/2025/11/chat-z.png');
    }

    /* Ícone de FLERTE */
    .action-flirt .button-icon {
        background-image: url('https://matchou.com.br/wp-content/uploads/2025/11/Frertes.png');
    }

    /* Ícone de FAVORITO (Vazio / Adicionar) */
    .action-favorite-profile .button-icon {
        background-image: url('https://matchou.com.br/wp-content/uploads/2025/11/estrela-1.png');
    }

    /* Ícone de FAVORITO (Cheio / Remover / Ativo) */
    .action-favorite-profile.active .button-icon {
        background-image: url('https://matchou.com.br/wp-content/uploads/2025/11/estrela-2.png');
    }
    
    /* Ajuste no texto do Favorito quando ativo (Opcional) */
    .action-favorite-profile.active .button-text {
        color: #ffcc00 !important; /* Texto fica amarelo se for favorito */
        font-weight: bold !important;
    }
}

/* ========================================================================
 * ESTILOS DA TABELA DE RESGATES E STATUS
 * ======================================================================== */
.withdrawals-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.withdrawals-table th, 
.withdrawals-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #333;
    color: #ddd;
}

.withdrawals-table th {
    background-color: #252525;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85em;
}

/* Badges de Status */
.matchou-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
}

.status-pending {
    background-color: #FFD700; /* Amarelo Ouro */
    color: #000;
}

.status-paid {
    background-color: #00FF7F; /* Verde Primavera */
    color: #000;
}

.status-cancelled {
    background-color: #FF4500; /* Laranja Avermelhado */
    color: #fff;
}

/* Responsividade para tabela */
.table-responsive {
    overflow-x: auto;
}