﻿.setCallout-wrapper {
    display: flex;
    max-width: 660px;
    margin-left: 10px;
    margin-top: 0;
}

.setCallout {
    border: 2px solid #28a745;
    border-radius: 8px;
    background-color: #f8f9fa;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 15px 0 0 0;
}

/* Product Details Page */
/*.setCallout {
    border: #00A451 solid;
    padding: 10px;
    margin: 10px 0;
    width: fit-content;
}*/

.setCallout-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .setCallout-icon i {
        color: white;
        font-size: 28px;
    }

.setCallout-content {
    flex: 1;
}

.setCallout-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
    color: rgb(0, 164, 81);
}

.setCallout-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.setCallout-button {
    flex-shrink: 0;
}

    .setCallout-button .btn {
        background-color: #28a745;
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        transition: background-color 0.3s ease;
    }

        .setCallout-button .btn:hover {
            background-color: #218838;
            text-decoration: none;
        }

        .setCallout-button .btn i {
            font-size: 14px;
        }

@media (max-width: 900px) {
    .setCallout-button {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .setCallout {
        flex-direction: column;
        text-align: center;
    }
}
