/* Walk Through Modal Styles */

.walkthrough-container {
    background: white;
    width: 95vw;
    height: 90vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.walkthrough-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.walkthrough-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.walkthrough-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ddd;
    overflow: hidden;
}

.walkthrough-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.scene-metadata {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background: #f8f9fa;
    font-size: 11px;
}

.scene-metadata-item {
    margin-bottom: 8px;
}

.scene-metadata-label {
    font-weight: 600;
    color: #555;
    margin-right: 8px;
}

.scene-content {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    font-family: 'Courier', 'Courier New', monospace;
    font-size: 12pt;
    font-weight: normal;
    line-height: 1.6;
}

.scene-content-line {
    margin-bottom: 4px;
    white-space: pre-wrap;
}

.scene-content-line.action {
    text-align: left;
}

.scene-content-line.character {
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
}

.scene-content-line.dialogue {
    text-align: left;
    margin-left: 10%;
    margin-right: 20%;
}

.scene-content-line.mark,
.scene-content-line.other {
    text-align: right;
}

.scene-content-line .highlight-blue {
    background: #add8e6;
    padding: 2px 0;
}

.scene-content-line .highlight-yellow {
    background: yellow;
    padding: 2px 0;
}

.scene-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-top: 1px solid #ddd;
    gap: 10px;
}

.nav-button {
    padding: 8px 15px;
    font-size: 16px;
}

.scene-number-input {
    width: 80px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.prop-columns {
    display: flex;
    flex: 1;
    overflow-x: auto;
    border-bottom: 1px solid #ddd;
}

.prop-column {
    flex: 1;
    min-width: 150px;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.prop-column:last-child {
    border-right: none;
}

.prop-column-header {
    padding: 10px;
    background: #f8f9fa;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.prop-column-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    min-height: 0;
}

.prop-button {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    text-align: left;
    font-size: 12px;
    word-wrap: break-word;
    color: #000;
}

.prop-button:hover {
    background: #f0f0f0;
}

.prop-button.selected {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.prop-detail-window {
    padding: 15px;
    border-top: 1px solid #ddd;
    height: 700px;
    overflow-y: auto;
    flex-shrink: 0;
}

.prop-detail-window h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.status-extracting_props { 
    background: #17a2b8; 
    color: #fff; 
}
