.ticket-custom-fields-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-custom-fields-popup .popup-content {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.ticket-custom-fields-popup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.ticket-custom-fields-popup .popup-header h3 {
    margin: 0;
    font-size: 18px;
}

.ticket-custom-fields-popup .popup-body {
    padding: 20px;
}

.ticket-custom-fields-popup .close-ticket-popup {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    line-height: 1;
}

.ticket-custom-fields-popup .close-ticket-popup:hover {
    color: #333;
}

.ticket-custom-fields-popup .ticket-fields-table {
    width: 100%;
    border-collapse: collapse;
}

.ticket-custom-fields-popup .ticket-fields-table th,
.ticket-custom-fields-popup .ticket-fields-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ticket-custom-fields-popup .ticket-fields-table th {
    font-weight: 600;
    width: 40%;
}

.open-ticket-popup {
    padding: 6px 12px;
    background-color: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.open-ticket-popup:hover {
    background-color: #135e96;
}

body.popup-open {
    overflow: hidden;
}