﻿.addLicenses-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.addLicenses-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 500px;
    max-width: 90%;
    background: transparent;
    border: none;
}

.addLicenses-modal-content {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.addLicenses-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f1f1f1;
    border-bottom: 1px solid #ccc;
}

.addLicenses-modal-title {
    margin: 0;
    font-weight: 600;
}

.addLicenses-modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.addLicenses-modal-body {
    padding: 16px;
    flex: 1;
}

.addLicenses-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid #ccc;
    background: #f9f9f9;
}

.addLicenses-btn-cancel {
    min-width: 80px;
}

.addLicenses-btn-confirm {
    min-width: 80px;
}

@media (max-width: 480px) {
    .addLicenses-modal {
        width: 90%;
    }
}

.custom-divider {
    border-top: 1px solid #555;
    margin: 25px auto;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
}
