/* Popup Container */

#gfat-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#gfat-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#gfat-popup-content {
    position: relative;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: calc(100vw - 500px);
    max-height: 80vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#gfat-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1.2;
    padding: 5px 15px 10px 15px;
    border-radius: 50%;
    z-index: 1001;
}

#gfat-popup-title {
    position: relative;
    background: #3E7DA6;
    color: white;
    padding: 20px;
    margin: 0;
    box-sizing: border-box;
}

#gfat-popup-title h1 {
    color: white !important;
}

#gfat-popup-data {
    padding: 20px;
    margin-top: 0;
    overflow-y: auto;
    max-height: calc(80vh - 125px);
    box-sizing: border-box; 
}

/* Popup table */

.gfat-debug-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.gfat-debug-table th, .gfat-debug-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.gfat-debug-table th {
    background-color: #f4f4f4;
    color: #333;
}

.gfat-debug-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.gfat-debug-table tr:hover {
    background-color: #eaeaea;
}