.code-box {
    position: relative;
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 5px;
    margin-top: 20px;
    font-family: monospace;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.copy-button:hover {
    background-color: #0056b3;
}

.copy-message {
    display: none;
    position: absolute;
    top: 10px;
    right: 150px;
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.copy-message.show {
    display: inline-block;
    opacity: 1;
}

.question-icon {
    cursor: pointer;
    margin-left: 10px;
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
}

.modal.show {
    display: flex;
}

.error-message {
    color: red;
    margin-top: 20px;
    font-weight: bold;
    transition: opacity 0.5s ease-in-out;
}

.error-message.hide {
    opacity: 0;
}
