/**
 * ArtistPress - Stili per tabs e panes
 */

/* Stili per i Tab di invio email e cartoline */
.recipient-tabs, .postcards-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.recipient-tab, .postcards-tab {
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    margin-right: 5px;
    border-radius: 4px 4px 0 0;
    background-color: #f5f5f5;
    font-weight: 500;
    transition: all 0.2s ease;
}

.recipient-tab.active, .postcards-tab.active {
    background-color: white;
    border-color: #ddd;
    border-bottom-color: white;
    margin-bottom: -1px;
    color: #4285f4;
}

.recipient-tab:hover, .postcards-tab:hover {
    background-color: #e5e5e5;
}

.recipient-tab.active:hover, .postcards-tab.active:hover {
    background-color: white;
}

.recipient-pane, .postcards-pane {
    display: none;
    padding: 15px 0;
}

.recipient-pane.active, .postcards-pane.active {
    display: block;
}

/* Tema scuro per i tab */
.dark-theme .recipient-tab, .dark-theme .postcards-tab {
    background-color: #1e2535;
    color: #ffffff;
}

.dark-theme .recipient-tab.active, .dark-theme .postcards-tab.active {
    background-color: #0e1525;
    border-color: #2a3142;
    border-bottom-color: #0e1525;
    color: #4DA3FF;
}

.dark-theme .recipient-tab:hover, .dark-theme .postcards-tab:hover {
    background-color: #2a3142;
}

.dark-theme .recipient-tab.active:hover, .dark-theme .postcards-tab.active:hover {
    background-color: #0e1525;
}

.dark-theme .recipient-pane.active, .dark-theme .postcards-pane.active {
    background-color: #0e1525;
}