/* Dialog Overlay Styles */
    /* Overlay */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: flex; 
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    /* Dialog Box */
    .dialog-box {
        width: 350px;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 0 25px rgba(0,0,0,0.3);
        position: absolute;
    }

    /* Title Bar */
    .title-bar {
        width: 100%;
        background: #008080;
        padding: 10px 15px;
        cursor: move;
        color: white;
        font-weight: bold;
        border-radius: 10px 10px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .close-btn {
        background: #ff4d4d;
        border: none;
        width: 28px;
        height: 28px;
        font-size: 18px;
        color: white;
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
    }

    .dialog-content {
        padding: 20px;
        font-size: 16px;
        text-align: center;
    }
