  /* OTR411 Main Stylesheet - v1.0.0 */

body { 
    margin: 0; 
    background: #f4f7f6; 
    font-family: -apple-system, system-ui, sans-serif; 
    padding-bottom: 120px; 
    color: #333;
}

.container { 
    width: 100%; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px 12px; 
    box-sizing: border-box; 
}

/* SEARCH SECTION */
.search-form { 
    display: flex; 
    background: #fff; 
    border: 2px solid #ffc107; 
    border-radius: 18px; 
    padding: 4px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
    margin-bottom: 15px; 
}

.search-form input { 
    flex: 1; 
    border: none; 
    padding: 14px; 
    font-size: 16px; 
    outline: none; 
    font-weight: 700; 
    background: transparent; 
}

.search-btn { 
    background: #ffc107; 
    border: none; 
    padding: 0 22px; 
    border-radius: 14px; 
    cursor: pointer; 
    font-size: 20px; 
    transition: background 0.2s;
}

.search-btn:active { background: #e0a800; }

/* TABS */
.tabs { display: flex; gap: 8px; margin-bottom: 22px; }

.tabs a { 
    flex: 1; 
    text-align: center; 
    text-decoration: none; 
    padding: 12px 8px; 
    border-radius: 12px; 
    font-size: 11px; 
    font-weight: 900; 
    color: #6c757d; 
    background: #e9ecef; 
    text-transform: uppercase; 
    border: 1px solid #dde3ea; 
}

.tabs a.active { 
    background: #ffc107; 
    color: #111; 
    border-color: #f0b400; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}

/* RESULTS */
.group-title { 
    font-size: 11px; 
    font-weight: 900; 
    text-transform: uppercase; 
    color: #6c757d; 
    margin: 25px 0 10px 14px; 
    letter-spacing: 0.5px; 
}

.result-card { 
    background: #fff; 
    padding: 20px; 
    border-radius: 18px; 
    border: 1px solid #e9ecef; 
    margin-bottom: 12px; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    border-left: 6px solid #ccc; 
    transition: transform 0.1s, box-shadow 0.1s; 
}

.result-card:active { transform: scale(0.98); }

.card-broker, .card-broker_page { border-left-color: #0056b3; }
.card-alert { border-left-color: #d9534f; }

.res-content { flex: 1; min-width: 0; }
.res-type { font-size: 10px; font-weight: 800; color: #0056b3; text-transform: uppercase; margin-bottom: 6px; }
.res-title { font-size: 18px; font-weight: 900; color: #111827; display: block; line-height: 1.3; margin-bottom: 4px; text-transform: uppercase; }
.dot-line { font-size: 13px; font-weight: 800; color: #4b5563; margin-bottom: 2px; }
.addr-line { font-size: 13px; color: #6b7280; font-weight: 500; line-height: 1.4; }

/* FOOTER NAVIGATION */
.footer-actions { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: #fff; 
    border-top: 1px solid #e9ecef; 
    display: flex; 
    padding: 12px 8px; 
    gap: 8px; 
    justify-content: center; 
    z-index: 1000; 
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05); 
}

.footer-actions a { 
    flex: 1; 
    max-width: 90px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-decoration: none; 
    background: #f8f9fa; 
    border: 1px solid #dee2e6; 
    padding: 12px 0; 
    border-radius: 14px; 
}

.footer-actions .icon { font-size: 22px; margin-bottom: 4px; }
.footer-actions .label { font-size: 10px; font-weight: 800; color: #6b7280; text-transform: uppercase; }

/* RESPONSIVE */
@media (max-width: 480px) {
    .tabs { gap: 4px; }
    .tabs a { font-size: 10px; padding: 10px 4px; }
}