.teleprompter-page {
    padding: 24px;
    background: #f5f8fa;
    min-height: calc(100vh - 60px);
}

.teleprompter-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.teleprompter-header {
    margin-bottom: 32px;
}

.teleprompter-header h2 {
    color: #33475b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.teleprompter-header p {
    color: #516f90;
    font-size: 14px;
}

.script-section {
    margin-bottom: 0;
}

.script-section h3 {
    color: #33475b;
    font-size: 16px;
    margin-bottom: 12px;
}

.script-section textarea {
    height: calc(100vh - 320px);
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd6e2;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6;
    resize: vertical;
}

.control-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.control-group {
    margin-bottom: 20px;
}

.control-group label {
    display: block;
    color: #33475b;
    font-size: 14px;
    margin-bottom: 8px;
}

.control-group input[type="range"] {
    width: 100%;
    margin: 8px 0;
}

.color-options {
    display: flex;
    gap: 8px;
}

.color-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #cbd6e2;
    border-radius: 4px;
    cursor: pointer;
}

.color-btn.active {
    border-color: #0091ae;
}

.action-buttons {
    margin-top: auto;
}

.primary-btn, .secondary-btn {
    flex: 1;
    height: 48px;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.primary-btn {
    background: #0091ae;
    color: white;
    border: none;
}

.secondary-btn {
    background: white;
    color: #33475b;
    border: 1px solid #cbd6e2;
}

.teleprompter-display {
    flex: 1;
    background: #000000;
    padding: 40px;
    overflow: hidden;
    position: relative;
}

#scriptDisplay {
    color: white;
    font-size: 32px;
    line-height: 1.5;
    text-align: center;
    white-space: pre-wrap;
    transition: transform 0.1s linear;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.fullscreen-prompter {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    padding: 60px;
}

.fullscreen-prompter.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prompter-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.control-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Slider customization */
.slider {
    width: 100%;
    height: 6px;
    background: #cbd6e2;
    border-radius: 2px;
    outline: none;
    margin: 12px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #0091ae;
    border-radius: 50%;
    cursor: pointer;
} 