/* Tuta Admin CSS */

/* General Tab */
.tuta-settings-tab-general {
    max-width: 800px;
    margin: 20px 0;
}

.tuta-connection-status {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.tuta-connection-success {
    background-color: #f0f8ee;
    border: 1px solid #c5e8c5;
}

.tuta-connection-error {
    background-color: #fef7f7;
    border: 1px solid #f1c0c0;
}

.tuta-connection-status .dashicons-yes-alt {
    color: #46b450;
    font-size: 20px;
}

.tuta-connection-status .dashicons-no {
    color: #dc3232;
    font-size: 20px;
}

/* Restart Onboarding */
.tuta-restart-onboarding {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f6fc;
    border: 1px solid #c5d9ed;
    border-radius: 4px;
}

.tuta-restart-onboarding h3 {
    margin-top: 0;
    color: #2271b1;
}

/* Products Tab */
#tuta-sync-products-btn {
    margin-top: 10px;
}

/* Web Chat Tab */
.tuta-web-chat-preview {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
    background-color: #f9f9f9;
}

/* Plans Tab */
.tuta-plans-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.tuta-plan-card {
    flex: 1;
    min-width: 250px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    background-color: #fff;
    position: relative;
}

.tuta-plan-card.tuta-plan-popular {
    border-color: #2271b1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tuta-plan-popular-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #2271b1;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.tuta-plan-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tuta-plan-price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2271b1;
}

.tuta-plan-price-period {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.tuta-plan-features {
    margin-bottom: 20px;
}

.tuta-plan-feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tuta-plan-feature .dashicons-yes-alt {
    color: #46b450;
    margin-right: 8px;
}

.tuta-plan-feature .dashicons-no-alt {
    color: #dc3232;
    margin-right: 8px;
}

.tuta-plan-select-btn {
    width: 100%;
    text-align: center;
}

/* Media Queries */
@media (max-width: 782px) {
    .tuta-plans-container {
        flex-direction: column;
    }
    
    .tuta-plan-card {
        min-width: auto;
    }
} 