/* Modal General Styles */
.capture-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(9, 10, 15, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.capture-modal-box {
    background: #11141d;
    padding: 30px;
    border-radius: 12px;
    width: 95%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--accent, #00ffcc);
    border-top: 4px solid var(--accent, #00ffcc);
    color: #e2e8f0;
    font-family: 'Space Grotesk', sans-serif;
    max-height: 90vh;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.capture-modal-box.fullscreen {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    border-top: 4px solid var(--accent, #00ffcc);
}

.capture-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
    transition: 0.3s;
}

.capture-modal-close:hover {
    color: #fff;
}

.capture-modal-fullscreen {
    position: absolute;
    top: 15px;
    right: 55px;
    border: 1px solid #64748b;
    background: rgba(255,255,255,0.05);
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    color: #64748b;
    transition: 0.3s;
    font-family: monospace;
    text-transform: uppercase;
}

.capture-modal-fullscreen:hover {
    color: var(--accent, #00ffcc);
    border-color: var(--accent, #00ffcc);
}

.capture-modal-title {
    color: #fff;
    text-align: center;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capture-modal-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 25px;
}

/* Forms */
.capture-input {
    width: 100%;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: 0.3s;
}

.capture-input:focus {
    border-color: var(--accent, #00ffcc);
    box-shadow: 0 0 10px rgba(0,255,204,0.2);
    outline: none;
}

.capture-btn {
    width: 100%;
    background: var(--accent, #00ffcc);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    font-size: 1rem;
}

.capture-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.4);
}

.capture-map-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px solid #334155;
    display: none;
    transition: height 0.3s ease;
}

.capture-map-container.fullscreen {
    height: 65vh;
}

/* Loading Simulation */
.capture-loader-box {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.capture-loader-bar {
    width: 100%;
    height: 6px;
    background: #334155;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
}

.capture-loader-fill {
    height: 100%;
    width: 0%;
    background: var(--accent, #00ffcc);
    box-shadow: 0 0 10px var(--accent, #00ffcc);
    transition: width 0.1s linear;
}

/* Mock Data Print View */
@media print {
    body { background: #fff !important; color: #000 !important; }
    .capture-modal-overlay { position: absolute; background: #fff !important; display: block !important; padding-top: 0;}
    .capture-modal-box { border: 2px solid #000; box-shadow: none; color: #000; width: 100%; max-width: 100%; max-height:none;}
    .capture-modal-title, .capture-modal-subtitle { color: #000 !important; }
    .capture-btn, .capture-modal-close { display: none !important; }
    .capture-map-container { border: 2px solid #000; height: 500px; }
}
