/* Frontend Account Dashboard Styles */
.mgu-account-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}


#update_all_subscriptions_billing_contact_field {
    display: none;
}

.mgu-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mgu-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.mgu-card.full-width {
    grid-column: 1 / -1;
}

.mgu-card h3 {
    background: #f7f7f7;
    margin: 0;
    padding: 15px 20px;
    font-size: 18px;
    border-bottom: 1px solid #e0e0e0;
}

.mgu-card-content {
    padding: 20px;
}

.mgu-card-content p {
    margin: 10px 0;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.button:hover {
    background: #135e96;
    color: #fff;
}

.button-primary {
    background: #0073aa;
}

.button-primary:hover {
    background: #005a87;
}

.button-link {
    display: inline-block;
    margin-top: 15px;
    color: #2271b1;
    text-decoration: none;
    font-size: 14px;
}

.button-link:hover {
    text-decoration: underline;
}

/* Activity Table */
.mgu-activity-table {
    width: 100%;
    border-collapse: collapse;
}

.mgu-activity-table th,
.mgu-activity-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.mgu-activity-table th {
    background: #f7f7f7;
    font-weight: 600;
}

.mgu-activity-table tr:hover {
    background: #f9f9f9;
}

/* Notifications */
.mgu-notifications {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mgu-notifications li {
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 4px solid;
}

.notification-info {
    background: #e3f2fd;
    border-color: #2196f3;
}

.notification-warning {
    background: #fff3e0;
    border-color: #ff9800;
}

.notification-success {
    background: #e8f5e9;
    border-color: #4caf50;
}

/* Subscription Details Page */
.subscription-details {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.subscription-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.subscription-actions .button {
    margin-right: 10px;
}

/* Access History Page */
.history-filters {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.history-table {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .mgu-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .mgu-activity-table {
        font-size: 14px;
    }
    
    .mgu-activity-table th,
    .mgu-activity-table td {
        padding: 8px;
    }
}






@media (max-width: 655px) {

/* Enhanced Dashboard Styles */
.mgu-account-dashboard.enhanced {
    margin: 0 auto;
    padding: 0px;
}

.mgu-card-content {
    padding: 15px;
}

/* Subscription Details Page */
.subscription-details {
    
    padding: 15px;
}
}





/* Enhanced Dashboard Styles */
.mgu-account-dashboard.enhanced {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.mgu-welcome-header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

.user-avatar img {
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
}

.user-greeting h2 {
    font-size: 1rem;
    margin: 0 0 5px 0;
    color: white;
}

.user-tagline {
    margin: 0;
    opacity: 0.9;
}

/* Stats Section */
.mgu-dashboard-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 40px;
}

.stat-content h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.stat-value {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #2271b1;
}



.mgu-card:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.card-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.card-icon {
    font-size: 24px;
}

/* Info Card Styles */
.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #666;
}

.info-value {
    color: #333;
}

/* Subscription Card Styles */
.subscription-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.detail-item strong {
    color: #666;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #2271b1;
}

/* Status Badges Enhanced */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    
}

.status-badge.active {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #0a5f3e;
}

.status-badge.inactive {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #8b3a1a;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    font-size: 12px;
}

/* Activity List Enhanced */
.activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.activity-item:hover {
    background: #f8f9fa;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    font-size: 24px;
    opacity: 0.6;
}

.activity-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.activity-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.button-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.button-secondary {
    background: #f0f0f0;
    color: #333;
}

.button-secondary:hover {
    background: #e0e0e0;
}

.button-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: gap 0.3s;
}

.button-link:hover {
    gap: 10px;
}

/* Notifications Enhanced */
.mgu-notifications {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mgu-notifications li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid;
}

.notification-icon {
    font-size: 20px;
}

.notification-info {
    background: #e3f2fd;
    border-color: #2196f3;
}

.notification-warning {
    background: #fff3e0;
    border-color: #ff9800;
}

.notification-success {
    background: #e8f5e9;
    border-color: #4caf50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mgu-welcome-header {
        flex-direction: row;
        text-align: left;
    }
    
    .mgu-dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .mgu-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .activity-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Scrollbar Styling */
.activity-list::-webkit-scrollbar {
    width: 6px;
}

.activity-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* No content states */
.no-activity,
.no-subscription-message {
    text-align: center;
    padding: 40px;
    color: #666;
}

.no-activity p {
    font-size: 16px;
    margin: 0;
}


/* ===============================================
   MENU RESPONSIVO COM ÍCONES
   =============================================== */
@media (max-width: 650px) {
    /* Menu lateral com ícones */
    .woocommerce-MyAccount-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 0;
    }
    
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        justify-content: space-around;
        margin: 0;
        padding: 10px 0;
        list-style: none;
    }
    
    .woocommerce-MyAccount-navigation li {
        flex: 1;
        text-align: center;
    }
    
    .woocommerce-MyAccount-navigation a {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
        font-size: 11px;
        text-decoration: none;
        color: #666;
    }
    
    .woocommerce-MyAccount-navigation a::before {
        content: '';
        display: block;
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    /* Ícones para cada item do menu */
    .woocommerce-MyAccount-navigation-link--dashboard a::before {
        content: '🏠';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--mgu-dashboard a::before {
        content: '📊';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--orders a::before {
        content: '📦';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--mgu-subscription a::before {
        content: '💳';
        font-size: 20px;
    }


        .woocommerce-MyAccount-navigation-link--downloads a::before {
        content: '📥';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--mgu-history a::before {
        content: '📜';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--edit-account a::before {
        content: '⚙️';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--customer-logout a::before {
        content: '🚪';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation .is-active a {
        color: #667eea;
        font-weight: bold;
    }
    
    /* Ajustar conteúdo para não ficar sob menu fixo */
    .woocommerce-MyAccount-content {
        padding-bottom: 20px;
    }
    
    /* Ajustes no dashboard */
    .mgu-welcome-header {
        padding: 10px 15px;
    }
    
    .mgu-dashboard-stats {
        grid-template-columns: 1fr;
    }
}


/* ===============================================
   MENU RESPONSIVO COM ÍCONES
   =============================================== */
@media (min-width: 655px) {
    /* Menu lateral com ícones */
    .woocommerce-MyAccount-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 0;
    }
    
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        justify-content: space-around;
        margin: 0;
        padding: 10px 0;
        list-style: none;
    }
    
    .woocommerce-MyAccount-navigation li {
        flex: 1;
        text-align: center;
        padding: 0px !important;
    }
    
    .woocommerce-MyAccount-navigation a {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
        font-size: 11px;
        text-decoration: none;
        color: #666;
    }
    
    .woocommerce-MyAccount-navigation a::before {
        content: '';
        display: block;
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    /* Ícones para cada item do menu */
    .woocommerce-MyAccount-navigation-link--dashboard a::before {
        content: '🏠';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--mgu-dashboard a::before {
        content: '📊';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--orders a::before {
        content: '📦';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--mgu-subscription a::before {
        content: '💳';
        font-size: 20px;
    }
    
        .woocommerce-MyAccount-navigation-link--downloads a::before {
        content: '📥';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--mgu-history a::before {
        content: '📜';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--edit-account a::before {
        content: '⚙️';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation-link--customer-logout a::before {
        content: '🚪';
        font-size: 20px;
    }
    
    .woocommerce-MyAccount-navigation .is-active a {
        color: #667eea;
        font-weight: bold;
    }
    
    /* Ajustar conteúdo para não ficar sob menu fixo */
    .woocommerce-MyAccount-content {
        padding-bottom: 20px;
    }
    
    /* Ajustes no dashboard */
    .mgu-welcome-header {
        padding: 10px 15px;
    }
    
    .mgu-dashboard-stats {
        grid-template-columns: 1fr;
    }
}



/* ===============================================
   PÁGINA DE LOGIN ESTILIZADA
   =============================================== */
.woocommerce-form-login,
.woocommerce-form-register {
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.woocommerce-form-login h2,
.woocommerce-form-register h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    font-weight: 600;
}

.woocommerce-form-row {
    margin-bottom: 20px;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.woocommerce-Input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f9f9f9;
}

.woocommerce-Input:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    margin: 20px 0;
    cursor: pointer;
}

.woocommerce-form__input-checkbox {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.woocommerce-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.woocommerce-LostPassword {
    text-align: center;
    margin-top: 20px;
}

.woocommerce-LostPassword a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.woocommerce-LostPassword a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsividade para login */
@media (max-width: 480px) {
    .woocommerce-form-login,
    .woocommerce-form-register {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .woocommerce-form-login h2,
    .woocommerce-form-register h2 {
        font-size: 24px;
    }
}

/* ===============================================
   CORREÇÕES PARA TABELAS RESPONSIVAS
   =============================================== */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.history-table {
    width: 100%;
    min-width: 600px;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .history-table {
        min-width: auto;
    }
    
    .history-table th,
    .history-table td {
        padding: 8px 5px;
        font-size: 14px;
    }
}

/* ===============================================
   CARDS DE ASSINATURA MELHORADOS
   =============================================== */
.subscription-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.subscription-card.active {
    border-color: #4caf50;
}

.subscription-card.on-hold {
    border-color: #ff9800;
}

.subscription-card.cancelled,
.subscription-card.expired {
    border-color: #f44336;
    opacity: 0.8;
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    
}


.subscription-header h3 {
    font-size: 1.1rem;
}
    
    
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.info-item label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.info-item.highlight {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 10px;
    border-radius: 8px;
}

.days-count {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #667eea !important;
}

/* Device badges */
.device-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.device-badge.mobile {
    background: #e3f2fd;
    color: #1976d2;
}

.device-badge.tablet {
    background: #f3e5f5;
    color: #7b1fa2;
}

.device-badge.desktop {
    background: #e8f5e9;
    color: #388e3c;
}


/* ===============================================
   PÁGINA DE ASSINATURA - ESTILOS ESPECÍFICOS
   =============================================== */
.mgu-subscription-details {
    padding: 20px 0;
}

.mgu-subscription-details h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.2px;
}

.subscription-notes {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #667eea;
    border-radius: 4px;
}

.subscription-notes h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.notes-content {
    color: #666;
}

.notes-content p {
    margin: 5px 0;
    line-height: 1.6;
}

.no-subscription {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-subscription-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-subscription h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 24px;
}

.no-subscription p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.button-large {
    padding: 16px 32px !important;
    font-size: 16px !important;
}

.subscription-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.button-secondary {
    background: #6c757d;
    color: white;
}

.button-secondary:hover {
    background: #5a6268;
}

/* Esconder texto de erro/debug */
.subscription-details-text {
    display: none; /* Temporariamente esconder se houver problemas */
}

/* Responsivo */
@media (max-width: 768px) {
    .subscription-actions {
        flex-direction: column;
    }
    
    .subscription-actions .button {
        width: auto;
        text-align: center;
        display: inline-block;
        
    text-align: center;
    padding: 10px !important;
    font-size: 0.8rem !important;
    margin-top: 0px !important;
    
    }
    
   
}
@media (max-width: 468px) {
    
    .has-global-padding {
        padding: 10px;
    }

}


.woocommerce-account .woocommerce-MyAccount-navigation {
    float: unset;
    width: 100%;
}


@media (min-width: 920px) {
.woocommerce-account .woocommerce-MyAccount-content {
    float: unset;
    width: 920px;
    max-width: 1200px;
    margin: 0 auto;
    
}
}

@media (max-width: 920px) {
.woocommerce-account .woocommerce-MyAccount-content {
    float: unset;
    width: 100%;
    margin: 0 auto;
    
}
}


.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0 0 0.1em !important; 
    padding: 0 0 0.1em !important;
}

.woocommerce img, .woocommerce-page img {
    height: auto;
    width: 50%;
}

.woocommerce .woocommerce-MyAccount-content {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 10px
}


.button.button-secondary {

    padding: 10px !important;
    font-size: 0.8rem !important;
    
}


.woocommerce-button.wp-element-button.button.view {
    font-size: 0.75rem !important;
    padding: 5px !important;
}


.button.button-secondary {
    display: none !important;
}

.woocommerce-button.button.cancel.wcs_block_ui_on_click.wp-element-button {
    display: none !important;
}


.woocommerce-button.button.subscription_renewal_early.wp-element-button {
    padding: 10px;
    font-size: 0.85rem;
}


.woocommerce-MyAccount-content h2 {
    font-size: 1.2rem;
   
}

.woocommerce-customer-details {
    display: none;
}


.button.wp-element-button {
        margin-left: 5px;
        padding: 10px !important;
        font-size: 0.85rem !important;
}

.woocommerce-MyAccount-downloads-file.button.alt {
            padding: 10px !important;
        font-size: 0.85rem !important;
}


.woocommerce-account .woocommerce {
    overflow: auto;
    padding-bottom: 25px;
    padding-top: 10px;
}