/*
 * TableTennis11
 *
 * @category  TableTennis11
 * @package   TableTennis_ProductRestriction
 * @author    TableTennis11 Development Team
 * @copyright Copyright (c) 2025 TableTennis11
 */

/* Product Restriction Message Styles */
.product-restriction-message {
    margin: 20px 0;
    padding: 0;
}

.restriction-message-content {
    display: flex;
    align-items: flex-start;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.product-restriction-message .message-icon {
    margin-right: 12px;
    font-size: 24px;
    line-height: 1;
    color: #856404;
}

.product-restriction-message .message-text {
    flex: 1;
}

.product-restriction-message .restriction-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #856404;
    line-height: 1.3;
}

.product-restriction-message .restriction-description {
    margin: 0;
    font-size: 14px;
    color: #856404;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-restriction-message {
        margin: 15px 0;
    }

    .restriction-message-content {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }

    .product-restriction-message .message-icon {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 20px;
    }

    .product-restriction-message .restriction-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .product-restriction-message .restriction-description {
        font-size: 13px;
    }
}

