.infoEditDialog {
    display: none;
    position: fixed !important;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    max-height: 80vh;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    flex-direction: column;
    overflow: hidden;
    font-family: sans-serif;
}

.btn-top-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1005;
    border-top-right-radius: 8px;
}
.btn-top-close:hover {
    background-color: #ef5350;
    color: #ffffff;
}

.dialog-header {
    padding: 15px 20px 10px;
    border-bottom: 1px solid #e0e0e0;
}

.dialog-header h3 {
    margin: 0 0 8px 0;
    color: #333;
}

.dialog-notice {
    margin: 0;
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    line-height: 1.4;
}

.infoedit-table-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 5px;
    background-color: #1a1d24;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding-top: 6px;
    padding-bottom: 6px;
}

.infoedit-table-scroll-area {
    flex: 1;
    overflow-y: scroll;
    padding-left: 5px;
    background: #fafafa;
}

.infoedit-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s;
}

.infoedit-row:nth-child(even) { background-color: #f4f5f7; }
.infoedit-row:nth-child(odd)  { background-color: #ffffff; }

.infoedit-row.is-infoedit-deleted {
    background-color: crimson !important;
    opacity: 0.4;
}

.infoedit-row input[type="text"] {
    height: 32px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 8px;
    box-sizing: border-box;
    font-size: 13px;
}
.infoedit-row input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0,123,255,0.2);
}

.infoedit-dialog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.infoedit-footer-right { display: flex; gap: 10px; }

.infoedit-dialog-footer button {
    height: 36px;
    padding: 0 16px;
    border: 1px solid #666;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.infoedit-btn-reset { background-color: transparent; color: #dc3545; border: 1px solid #dc3545 !important; }
.infoedit-btn-add   { background-color: #28a745; color: white; }
.infoedit-btn-save  { background-color: #007bff; color: white; }
.infoedit-btn-close { background-color: #6c757d; color: white; }
.infoedit-btn-reset:hover { background-color: #dc3545; color: white; }
.infoedit-btn-add:hover   { background-color: #218838; }
.infoedit-btn-save:hover  { background-color: #0056b3; }
.infoedit-btn-close:hover { background-color: #5a6268; }

