/*
 * Styles for the Pro features upsell section in the admin settings.
 */

.sol-pro-features {
    margin-top: 40px;
    padding: 20px;
    border: 2px dashed #9e9e9e;
    background-color: #f9f9f9;
    text-align: center;
}

.sol-pro-features h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 0;
}

.pro-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
    text-align: left;
}

.pro-feature-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    opacity: 0.7;
    position: relative;
}

.pro-feature-card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #34495e;
}

.pro-feature-card h3 .dashicons-lock {
    color: #e67e22;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.sol-pro-sortable-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.sol-pro-sortable-list li {
    padding: 8px 12px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    background-color: #f1f1f1;
    cursor: not-allowed;
    border-radius: 3px;
}

.pro-feature-card select[disabled] {
    cursor: not-allowed;
    width: 100%;
}

.sol-upgrade-cta {
    margin-top: 20px;
}

.sol-upgrade-button {
    font-size: 18px !important;
    height: auto !important;
    padding: 12px 30px !important;
    background: #0073aa !important;
    border-color: #0073aa !important;
    box-shadow: 0 1px 0 #0073aa;
    text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
    transition: background-color 0.2s ease-in-out;
}

.sol-upgrade-button:hover {
    background: #0085ba !important;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .pro-features-grid {
        grid-template-columns: 1fr;
    }
}