


.modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed; /* Fixed to cover the whole viewport */
    top: 0;
    left: 0;
    /* Removed background-color here as it's handled by the overlay */
}

.modal-content {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 450px; /* Adjust based on desired width */
    width: 90%; /* Responsive width */
    box-sizing: border-box; /* Include padding in width calculation */
}

.icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: #5d46e0; /* Main circle background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px; /* Center the icon and add bottom margin */
    overflow: hidden; /* Ensure plus/minus don't go out of bounds */
}

.check-icon {
    width: 40px;
    height: 40px;
    stroke: white;
    z-index: 1; /* Ensure checkmark is above other elements in wrapper */
}

.plus-minus-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.plus-minus-icons span {
    position: absolute;
    color: #8c7ff4; /* Lighter purple for plus/minus */
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.icon-plus.top-left {
    top: 10px;
    left: 10px;
    transform: rotate(45deg); /* To make it look like a cross */
}
.icon-minus.bottom-right {
    bottom: 10px;
    right: 10px;
}
.icon-check-small.bottom-left {
    bottom: 10px;
    left: 15px;
    font-size: 16px;
    transform: rotate(-15deg); /* Slight rotation for visual effect */
}
.icon-plus.top-right-small {
    top: 5px;
    right: 20px;
    font-size: 16px;
}

.modal-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.modal-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 15px; /* Add some padding for text */
}

.profile-button {
    background-color: #f0f0f0;
    color: #666;
    border: none;
    border-radius: 25px; /* Pill shape */
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex; /* To align icon and text */
    align-items: center;
    gap: 8px; /* Space between icon and text */
    margin-bottom: 25px;
}

.profile-button:hover {
    background-color: #e0e0e0;
}

.profile-button svg {
    width: 18px;
    height: 18px;
    stroke: #666; /* Match button text color */
}

.close-window-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.close-window-link:hover {
    color: #666;
}

.close-window-link svg {
    width: 12px;
    height: 12px;
    stroke: #999; /* Match link color */
}
