/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: var(--bg-secondary);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid var(--border-color);
    width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

.close-modal {
    color: var(--text-secondary);
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
}

.modal-footer {
    margin-top: 20px;
    text-align: right;
}

.property-row {
    margin-bottom: 10px;
    display: flex;
}

.property-label {
    font-weight: bold;
    width: 100px;
    color: var(--text-secondary);
}

.property-value {
    flex: 1;
    word-break: break-all;
}