/**
 * WP Media Locker Admin - Dashboard Styles
 */

/* ==========================================================================
   Variables & Base
   ========================================================================== */

:root {
    --wpml-primary: #2271b1;
    --wpml-primary-hover: #135e96;
    --wpml-success: #00a32a;
    --wpml-warning: #dba617;
    --wpml-danger: #d63638;
    --wpml-text: #1d2327;
    --wpml-text-light: #646970;
    --wpml-border: #c3c4c7;
    --wpml-border-light: #e0e0e0;
    --wpml-bg: #f0f0f1;
    --wpml-white: #ffffff;
    --wpml-radius: 6px;
    --wpml-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wpml-dashboard,
.wpml-api-keys,
.wpml-usage,
.wpml-sites,
.wpml-custom-domains {
    max-width: 100%;
    margin: 0 auto;
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.wpml-dashboard-header,
.wpml-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--wpml-border-light);
}

.wpml-dashboard-header h2,
.wpml-page-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--wpml-text);
}

.wpml-page-description {
    color: var(--wpml-text-light);
    margin-bottom: 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.wpml-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: none;
    border-radius: var(--wpml-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.wpml-button-primary {
    background: var(--wpml-primary);
    color: var(--wpml-white);
}

.wpml-button-primary:hover {
    background: var(--wpml-primary-hover);
    color: var(--wpml-white);
}

.wpml-button-secondary {
    background: var(--wpml-white);
    color: var(--wpml-text);
    border: 1px solid var(--wpml-border);
}

.wpml-button-secondary:hover {
    background: var(--wpml-bg);
    color: var(--wpml-text);
}

.wpml-button-danger {
    background: var(--wpml-danger);
    color: var(--wpml-white);
}

.wpml-button-danger:hover {
    background: #b32d2e;
    color: var(--wpml-white);
}

.wpml-button-small {
    padding: 6px 12px;
    font-size: 13px;
}

.wpml-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Plan Badge
   ========================================================================== */

.wpml-dashboard-plan {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    padding: 15px 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-plan-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.wpml-plan-25gb {
    background: #e3f2fd;
    color: #1565c0;
}

.wpml-plan-50gb {
    background: #e8f5e9;
    color: #2e7d32;
}

.wpml-plan-100gb {
    background: #fff3e0;
    color: #ef6c00;
}

.wpml-plan-custom {
    background: #f3e5f5;
    color: #7b1fa2;
}

.wpml-plan-expires {
    color: var(--wpml-text-light);
    font-size: 14px;
}

/* ==========================================================================
   Stats Grid
   ========================================================================== */

.wpml-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.wpml-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
    box-shadow: var(--wpml-shadow);
}

.wpml-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
}

.wpml-stat-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--wpml-primary);
}

.wpml-stat-content {
    flex: 1;
}

.wpml-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--wpml-text);
    line-height: 1.2;
}

.wpml-stat-label {
    display: block;
    font-size: 13px;
    color: var(--wpml-text-light);
    margin-top: 4px;
}

/* ==========================================================================
   Progress Bar
   ========================================================================== */

.wpml-storage-progress {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--wpml-text);
}

.wpml-progress-bar {
    height: 12px;
    background: var(--wpml-bg);
    border-radius: 6px;
    overflow: hidden;
}

.wpml-progress-fill {
    height: 100%;
    background: var(--wpml-primary);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.wpml-progress-fill.wpml-progress-warning {
    background: var(--wpml-warning);
}

.wpml-progress-fill.wpml-progress-danger {
    background: var(--wpml-danger);
}

.wpml-progress-notice {
    margin-top: 12px;
    padding: 10px 15px;
    border-radius: var(--wpml-radius);
    font-size: 13px;
}

.wpml-notice-warning {
    background: #fff8e1;
    color: #f57c00;
}

.wpml-notice-danger {
    background: #ffebee;
    color: var(--wpml-danger);
}

/* ==========================================================================
   Quick Actions
   ========================================================================== */

.wpml-quick-actions {
    margin-bottom: 30px;
}

.wpml-quick-actions h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--wpml-text);
}

.wpml-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.wpml-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
    text-decoration: none;
    color: var(--wpml-text);
    transition: all 0.2s;
}

.wpml-action-card:hover {
    border-color: var(--wpml-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--wpml-primary);
}

.wpml-action-card .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--wpml-primary);
}

/* ==========================================================================
   Info Box
   ========================================================================== */

.wpml-info-box,
.wpml-info-card {
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-info-box h3,
.wpml-info-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.wpml-info-box ul {
    margin: 0;
    padding-left: 20px;
}

.wpml-info-box li {
    margin-bottom: 8px;
}

.wpml-info-box a {
    color: var(--wpml-primary);
}

/* ==========================================================================
   Form Cards
   ========================================================================== */

.wpml-form-card {
    margin-bottom: 24px;
    padding: 24px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-form-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--wpml-border-light);
}

.wpml-form-row {
    margin-bottom: 20px;
}

.wpml-form-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--wpml-text);
}

.wpml-form-row label .required {
    color: var(--wpml-danger);
}

.wpml-form-row input[type="text"],
.wpml-form-row input[type="url"],
.wpml-form-row input[type="email"],
.wpml-form-row select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--wpml-border);
    border-radius: var(--wpml-radius);
    font-size: 14px;
}

.wpml-form-row input:focus,
.wpml-form-row select:focus {
    outline: none;
    border-color: var(--wpml-primary);
    box-shadow: 0 0 0 1px var(--wpml-primary);
}

.wpml-field-description {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--wpml-text-light);
}

.wpml-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

/* ==========================================================================
   API Key Display
   ========================================================================== */

.wpml-api-key-display {
    text-align: center;
    padding: 30px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: var(--wpml-radius);
    margin-bottom: 24px;
}

.wpml-api-key-display .wpml-success-icon {
    margin-bottom: 15px;
}

.wpml-api-key-display .wpml-success-icon .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--wpml-success);
}

.wpml-api-key-display h3 {
    margin: 0 0 10px;
    color: var(--wpml-success);
}

.wpml-warning-text {
    color: var(--wpml-danger);
    font-weight: 500;
    margin-bottom: 15px;
}

.wpml-api-key-box {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.wpml-api-key-box code {
    flex: 1;
    padding: 15px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border);
    border-radius: var(--wpml-radius);
    font-size: 14px;
    word-break: break-all;
    text-align: left;
}

.wpml-copy-btn {
    padding: 10px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border);
    border-radius: var(--wpml-radius);
    cursor: pointer;
    transition: all 0.2s;
}

.wpml-copy-btn:hover {
    background: var(--wpml-bg);
}

/* ==========================================================================
   Keys List
   ========================================================================== */

.wpml-keys-list {
    display: grid;
    gap: 16px;
}

.wpml-key-card {
    padding: 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-key-card.wpml-key-inactive {
    opacity: 0.7;
    background: #f9f9f9;
}

.wpml-key-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.wpml-key-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.wpml-site-url {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--wpml-primary);
    font-size: 13px;
    text-decoration: none;
}

.wpml-site-url:hover {
    text-decoration: underline;
}

.wpml-site-url .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.wpml-no-site {
    color: var(--wpml-text-light);
    font-size: 13px;
    font-style: italic;
}

.wpml-key-body {
    padding-top: 15px;
    border-top: 1px solid var(--wpml-border-light);
}

.wpml-key-value {
    margin-bottom: 15px;
}

.wpml-key-value label {
    font-size: 12px;
    color: var(--wpml-text-light);
    text-transform: uppercase;
}

.wpml-key-value code {
    display: block;
    margin-top: 5px;
    padding: 10px;
    background: var(--wpml-bg);
    border-radius: var(--wpml-radius);
    font-size: 13px;
}

.wpml-key-stats {
    display: flex;
    gap: 30px;
}

.wpml-key-stat {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   Status Badges
   ========================================================================== */

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

.wpml-status-active {
    background: #e8f5e9;
    color: var(--wpml-success);
}

.wpml-status-inactive,
.wpml-status-suspended {
    background: #ffebee;
    color: var(--wpml-danger);
}

.wpml-status-pending,
.wpml-status-pending_validation {
    background: #fff8e1;
    color: #f57c00;
}

.wpml-ssl-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    color: var(--wpml-success);
}

.wpml-ssl-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Empty State
   ========================================================================== */

.wpml-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--wpml-white);
    border: 1px dashed var(--wpml-border);
    border-radius: var(--wpml-radius);
}

.wpml-empty-state .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--wpml-border);
    margin-bottom: 15px;
}

.wpml-empty-state h3 {
    margin: 0 0 10px;
    color: var(--wpml-text);
}

.wpml-empty-state p {
    color: var(--wpml-text-light);
    margin-bottom: 20px;
}

/* ==========================================================================
   Sites Grid
   ========================================================================== */

.wpml-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.wpml-site-card {
    padding: 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-site-card.wpml-site-inactive {
    opacity: 0.7;
}

.wpml-site-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.wpml-site-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.wpml-site-icon img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
}

.wpml-site-icon .dashicons {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--wpml-border);
}

.wpml-site-info {
    flex: 1;
}

.wpml-site-info h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.wpml-site-stats {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--wpml-border-light);
    border-bottom: 1px solid var(--wpml-border-light);
}

.wpml-site-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wpml-site-stat .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--wpml-text-light);
    margin-bottom: 5px;
}

.wpml-site-actions {
    margin-top: 15px;
}

/* ==========================================================================
   Custom Domains
   ========================================================================== */

.wpml-domain-quota {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    padding: 15px 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-quota-text {
    font-weight: 500;
    white-space: nowrap;
}

.wpml-quota-bar {
    flex: 1;
    height: 8px;
    background: var(--wpml-bg);
    border-radius: 4px;
    overflow: hidden;
}

.wpml-quota-fill {
    height: 100%;
    background: var(--wpml-primary);
    border-radius: 4px;
}

.wpml-domains-list {
    display: grid;
    gap: 16px;
}

.wpml-domain-card {
    padding: 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-domain-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wpml-domain-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpml-domain-info .dashicons {
    color: var(--wpml-primary);
}

.wpml-domain-info h4 {
    margin: 0;
}

.wpml-domain-dns {
    padding: 15px;
    background: #fff8e1;
    border-radius: var(--wpml-radius);
    margin-bottom: 15px;
}

.wpml-domain-dns p {
    margin: 0 0 10px;
    font-size: 13px;
}

.wpml-domain-dns code {
    display: block;
    padding: 10px;
    background: var(--wpml-white);
    border-radius: var(--wpml-radius);
    word-break: break-all;
}

.wpml-domain-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--wpml-border-light);
}

.wpml-domain-date {
    font-size: 13px;
    color: var(--wpml-text-light);
}

.wpml-domain-actions {
    display: flex;
    gap: 10px;
}

.wpml-dns-record {
    padding: 15px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border);
    border-radius: var(--wpml-radius);
    margin-bottom: 15px;
}

.wpml-dns-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wpml-dns-row:last-child {
    margin-bottom: 0;
}

.wpml-dns-label {
    font-weight: 500;
    min-width: 60px;
}

.wpml-dns-value {
    font-family: monospace;
    background: var(--wpml-bg);
    padding: 5px 10px;
    border-radius: var(--wpml-radius);
}

.wpml-dns-note {
    font-size: 13px;
    color: var(--wpml-text-light);
    margin-bottom: 15px;
}

/* ==========================================================================
   Charts
   ========================================================================== */

.wpml-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.wpml-chart-card {
    padding: 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

.wpml-chart-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.wpml-chart-container {
    position: relative;
    height: 300px;
}

.wpml-chart-empty {
    text-align: center;
    color: var(--wpml-text-light);
    padding: 40px;
}

/* ==========================================================================
   Usage Summary
   ========================================================================== */

.wpml-usage-summary {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.wpml-summary-card {
    flex: 1;
    padding: 20px;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
    text-align: center;
}

.wpml-summary-value {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--wpml-primary);
}

.wpml-summary-label {
    display: block;
    font-size: 13px;
    color: var(--wpml-text-light);
    margin-top: 5px;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.wpml-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
    overflow: hidden;
}

.wpml-table th,
.wpml-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--wpml-border-light);
}

.wpml-table th {
    background: var(--wpml-bg);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--wpml-text-light);
}

.wpml-table tr:last-child td {
    border-bottom: none;
}

.wpml-table tr:hover td {
    background: #f9f9f9;
}

.wpml-file-name {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wpml-top-files {
    margin-bottom: 30px;
}

.wpml-top-files h3 {
    margin-bottom: 15px;
}

.wpml-empty-message {
    text-align: center;
    padding: 40px;
    color: var(--wpml-text-light);
    background: var(--wpml-white);
    border: 1px solid var(--wpml-border-light);
    border-radius: var(--wpml-radius);
}

/* ==========================================================================
   Messages
   ========================================================================== */

.wpml-message {
    padding: 15px 20px;
    border-radius: var(--wpml-radius);
    margin-bottom: 20px;
}

.wpml-message p {
    margin: 0 0 15px;
}

.wpml-message p:last-child {
    margin-bottom: 0;
}

.wpml-message-info {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    color: #1565c0;
}

.wpml-message-error {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    color: #c62828;
}

.wpml-message-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .wpml-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wpml-charts-grid {
        grid-template-columns: 1fr;
    }

    .wpml-sites-grid {
        grid-template-columns: 1fr;
    }

    .wpml-usage-summary {
        flex-direction: column;
    }

    .wpml-dashboard-plan {
        flex-wrap: wrap;
    }

    .wpml-key-stats {
        flex-wrap: wrap;
    }

    .wpml-site-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .wpml-stats-grid {
        grid-template-columns: 1fr;
    }

    .wpml-actions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wpml-dashboard-header,
    .wpml-page-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Copy Feedback Toast
   ========================================================================== */

.wpml-copy-feedback {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d2327;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    z-index: 99999;
    animation: wpml-slide-up 0.3s ease;
}

.wpml-fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes wpml-slide-up {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.wpml-spin {
    animation: wpml-spin 1s linear infinite;
}

@keyframes wpml-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Pricing Table (Shortcode)
   ========================================================================== */

.wpml-pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wpml-pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wpml-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.wpml-pricing-popular {
    border: 2px solid #4CAF50;
}

.wpml-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.wpml-pricing-name {
    margin: 0 0 16px;
    font-size: 24px;
    color: #333;
}

.wpml-pricing-price {
    margin-bottom: 24px;
}

.wpml-pricing-currency {
    font-size: 24px;
    vertical-align: super;
    color: #666;
}

.wpml-pricing-amount {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.wpml-pricing-period {
    font-size: 16px;
    color: #666;
}

.wpml-pricing-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.wpml-pricing-specs li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.wpml-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.wpml-pricing-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #666;
}

.wpml-pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.wpml-pricing-button {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s;
    box-sizing: border-box;
}

.wpml-pricing-button:hover {
    background: #43a047;
    color: #fff;
}

.wpml-pricing-popular .wpml-pricing-button {
    background: #2196F3;
}

.wpml-pricing-popular .wpml-pricing-button:hover {
    background: #1976D2;
}
