/* Dedicated Modal Styles */
.dedicated-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.dedicated-modal .modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    max-width: 500px; /* fixed max width */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
}

.dedicated-modal .modal-content input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.dedicated-modal .modal-content button {
    margin-top: 12px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.dedicated-modal .submit-buy {
    background: #087538;
    color: #fff;
}

.dedicated-modal .close-modal {
    background: #ccc;
    color: #000;
    margin-left: 10px;
}
