/* * Interactive Steps Guide Stylesheet
 */

.isg-container {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    text-align: center;
}

.isg-main-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.isg-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.isg-step-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.isg-arrow {
    font-size: 30px;
    color: #ff4500;
    margin-right: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.isg-arrow.active {
    opacity: 1;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.2;
    }
}

.isg-step-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #0073aa;
    background-color: #fff;
    color: #0073aa;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.isg-step-btn:hover {
    background-color: #0073aa;
    color: #fff;
    transform: scale(1.05);
}

.isg-final-button-wrapper {
    margin-top: 30px;
}

.isg-final-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.isg-final-btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Modal Styles */
.isg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.isg-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: left;
}

.isg-modal-close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.isg-modal-close-x:hover {
    color: #333;
}

#isg-modal-title {
    margin-top: 0;
    font-size: 22px;
    color: #333;
}

#isg-modal-body {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.isg-modal-close-btn {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.isg-modal-close-btn:hover {
    background-color: #c82333;
}