﻿.custom-alert {
    position: relative;
}

    .custom-alert .close-button {
        position: absolute;
        top: 15px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #666;
        padding: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .custom-alert .close-button:hover {
            color: #333;
        }

    .custom-alert.arabic .close-button {
        left: 15px;
    }

    .custom-alert.english .close-button {
        right: 15px;
    }
