.pilot-modal {
    border: none;
    border-radius: 16px;
    width: 95%;
    max-width: 875px;
    padding: 0;
    overflow: hidden;
}

.pilot-modal::backdrop {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    padding: 30px;
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.modal-header img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.role-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    background: #e0e0e0;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.table-container {
    overflow-x: auto;
    height: 300px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th {
    text-align: left;
    color: #666;
    font-size: 0.8rem;
    padding: 10px;
}

td {
    padding: 12px 10px;
    border-top: 1px solid #eee;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}