/* Popup Overlay */
.smr-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box */
.smr-popup-box {
    background: #fff;
    max-width: 600px;
    width: 90%;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    position: relative;
}

/* Logo */
.tcp-logo {
    width: 120px;
    margin-bottom: 15px;
}

/* Headings */
.smr-popup-box h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

/* Content */
.smr-popup-content {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    text-align: left;
    margin-bottom: 20px;
}

.smr-popup-content a {
    color: #a87d2d;
    font-weight: bold;
    text-decoration: none;
}

.smr-popup-content a:hover {
    text-decoration: underline;
}

/* Buttons */
.smr-popup-actions {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.smr-popup-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

#smr-agree-btn {
    background: #a87d2d;
    color: white;
}

#smr-decline-btn {
    background: #ccc;
    color: #222;
}
.smr-popup-content.scrollable {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
    text-align: left;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

