.modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modalContent {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto Condensed', sans-serif;
}

.modalHeader {
    background: #0088cc;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

.closeButton {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.modalBody {
    padding: 15px;
}

.tabs {
    display: flex;
    margin-bottom: 15px;
}

.tab {
    padding: 8px 15px;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    flex: 1;
    text-align: center;
}

.tab.active {
    background: #2c3e50;
    color: white;
}

.inputGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.inputColumn {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.columnLabel {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.inputField {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.updateButton {
    width: 100%;
    padding: 10px;
    background: #0088cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.updateButton:hover {
    background: #0077b3;
}

.updateButton:disabled {
    background: #ccc;
    cursor: not-allowed;
}