/* ============================================
   ECHO ÇEVİRİ - İSTEK FORMU CSS
   ============================================ */

/* === GENEL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* === İSTEK FORMU CONTAINER === */
.content-container {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    width: 90%;
    max-width: 800px;
    margin: 50px auto !important;
}

.section-title {
    font-size: 26px;
    margin-bottom: 25px;
    margin-top: 20px;
    padding-left: 15px;
    border-left: 5px solid #4CAF50;
    font-weight: 600;
    color: #e5e5e5;
}

/* === BAŞARI/HATA MESAJLARI === */
.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    font-weight: 500;
}

.error-message {
    background: #f44336;
    color: white;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    font-weight: 500;
}

/* === FORM STİLLERİ === */
#request-form {
    background-color: #141414;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #1e1e1e;
}

#request-form > p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #e5e5e5;
    font-weight: 500;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.2s;
}

.form-group input[type="text"]:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
    background-color: #141414;
}

.form-group select {
    cursor: pointer;
}

/* === ARAMA SONUÇLARI === */
.search-results {
    position: relative;
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.search-results:empty {
    display: none;
}

.search-results p {
    color: #4CAF50;
    text-align: center;
    padding: 15px;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #1e1e1e;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background-color: #1e1e1e;
    padding-left: 18px;
}

.result-item img {
    width: 40px;
    height: 60px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 4px;
    border: 1px solid #2a2a2a;
}

.result-item span {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
}

/* Scrollbar Stili */
.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}

/* === AYIRICI ÇİZGİ === */
hr {
    border: none;
    border-top: 1px solid #333;
    margin: 30px 0;
}

/* === SEÇİM DURUMU === */
h3 {
    font-size: 20px;
    color: #e5e5e5;
    margin-bottom: 15px;
    font-weight: 600;
}

#selection_status {
    color: #ff9800;
    font-size: 14px;
    padding: 12px;
    background-color: #0a0a0a;
    border-left: 3px solid #ff9800;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* === BUTON === */
.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: center;
}

.btn:hover:not(:disabled) {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn:disabled {
    background-color: #666 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

/* === GİRİŞ YAPMA UYARISI === */
.login-warning {
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 5px;
    border-left: 4px solid #4CAF50;
    color: #e0e0e0;
    font-size: 15px;
}

.login-warning a {
    color: #4CAF50;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}

.login-warning a:hover {
    color: #45a049;
}

/* === REKLAM ALANLARI (SAĞ-SOL) === */
.side-ad-wrapper {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
}

.side-ad-left {
    left: 10px;
}

.side-ad-right {
    right: 10px;
}

/* === RESPONSİVE TASARIM === */
@media (max-width: 768px) {
    .content-container {
        width: 95%;
        margin: 30px auto !important;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    #request-form {
        padding: 20px;
    }
    
    .form-group input[type="text"],
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }
    
    .result-item img {
        width: 35px;
        height: 50px;
    }
    
    .result-item span {
        font-size: 13px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
        padding-left: 12px;
        border-left-width: 4px;
    }
    
    #request-form {
        padding: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .result-item {
        padding: 10px;
    }
    
    .result-item img {
        width: 30px;
        height: 45px;
        margin-right: 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}