﻿body {
    background-color: #3c3c3c;
    font-family: 'Stack Sans Text', Tahoma, Geneva, Verdana, sans-serif;
    color: #e7e7e7;
    margin: 0;
    padding: 0;
}

/* Page Container */
.form-track-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.page-header-section {
    text-align: center;
    padding: 30px 0;
}

.header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #a8c7fa 0%, #7ba3f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(168, 199, 250, 0.3);
}

.header-icon i {
    font-size: 2.5rem;
    color: #1c1c1c;
}

.page-header-section h1 {
    color: #a8c7fa;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.header-description {
    color: #7e7e7e;
    font-size: 1rem;
    margin: 0;
}

/* Track Container */
.track-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Track Form Card */
.track-form-card {
    background: #1c1c1c;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 199, 250, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    background: none;
}

.card-header i {
    font-size: 2.5rem;
    color: #a8c7fa;
    margin-bottom: 12px;
    display: block;
}

.card-header h2 {
    color: #a8c7fa;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* Track Form */
.track-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #7e7e7e;
    font-size: 1.1rem;
    z-index: 1;
}

[data-theme="light"] .form-input {
    background: white;
    color: #1c1c1c;
}
[data-theme="light"] .form-input:focus {
    background: white;
    color: #1c1c1c;
}
[data-theme="light"] .form-input::placeholder {
    color: #999999;
    opacity: 1;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 2px solid rgba(168, 199, 250, 0.2);
    border-radius: 5px;
    font-size: 0.7rem;
    background: #282828;
    color: #e7e7e7;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #a8c7fa;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.08);
    transform: translateY(-1px);
    background: #2c2c2c;
}

.form-input::placeholder {
    color: #999999;
    opacity: 1;
}

.track-button {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #a8c7fa 0%, #7ba3f0 100%);
    color: #1c1c1c;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(168, 199, 250, 0.3);
}

.track-button:hover {
    background: linear-gradient(135deg, #7ba3f0 0%, #6495ed 100%);
    color: black;
    transform: translateY(-2px);

}

.track-button:active {
    transform: translateY(0);
}

.track-button i {
    font-size: 1rem;
}

/* Info Box */
.info-box {
    margin-top: 25px;
    padding: 16px;
    background: #282828;
    border-radius: 10px;
    border-left: 4px solid #a8c7fa;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-box i {
    color: #a8c7fa;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    color: #e7e7e7;
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Info Cards Section */
.info-cards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background: #1c1c1c;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 199, 250, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8c7fa 0%, #7ba3f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
[data-theme="light"] .info-card-icon i {
    color: #e7e7e7;
}
.info-card-icon i {
    font-size: 1.5rem;
    color: #1c1c1c;
}

.info-card h3 {
    color: #a8c7fa;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

/* Status List */
.status-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
[data-theme="light"] .status-list li {
      color: #1c1c1c; 
    }
.status-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e7e7e7;
    font-size: 0.85rem;
    line-height: 1.5;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.status-dot.status-open {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.status-dot.status-reviewing {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.status-dot.status-solved {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.status-dot.status-closed {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

/* FAQ Items */
[data-theme="light"] .faq-item p  {
    color: #1c1c1c;
}
.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(168, 199, 250, 0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item strong {
    color: #92bcff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.faq-item strong i {
    font-size: 0.85rem;
    color: #7ba3f0;
}

.faq-item p {
    color: #7e7e7e;
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 24px;
}

/* Timeline Info */
[data-theme="light"] .timeline-info {
    color: #1c1c1c;
}
.timeline-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
[data-theme="light"] .timeline-item {
    background: #f5f5f5;
    color: #1c1c1c;
}
[data-theme="light"] .timeline-item:hover {
    color: #1c1c1c;
    background: #e7e7e7;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    background: #282828;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.timeline-item:hover {
    background: #2c2c2c;
}

.timeline-item i {
    color: #4ade80;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.timeline-item div {
    flex: 1;
}

.timeline-item strong {
    color: #a8c7fa;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 4px;
}

.timeline-item p {
    color: #7e7e7e;
    font-size: 0.75rem;
    margin: 0;
}

/* Error Message */
.error-message {
    color: #f87171;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    padding: 12px;
    background: rgba(248, 113, 113, 0.1);
    border-radius: 8px;
    border-left: 4px solid #f87171;
    font-size: 0.85rem;
}

/* Açık tema için error message */
[data-theme="light"] .error-message {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header-section h1 {
        font-size: 1.75rem;
    }

    .header-icon {
        width: 60px;
        height: 60px;
    }

    .header-icon i {
        font-size: 2rem;
    }

    .track-form-card {
        padding: 25px;
    }

    .info-cards-section {
        grid-template-columns: 1fr;
    }

    .card-header h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .form-track-page {
        padding: 20px 15px;
    }

    .page-header-section {
        padding: 20px 0;
    }

    .page-header-section h1 {
        font-size: 1.5rem;
    }

    .header-description {
        font-size: 0.9rem;
    }

    .track-form-card {
        padding: 20px;
    }
}

/* ========== AÇIK TEMA STİLLERİ ========== */
[data-theme="light"] body {
    background-color: #f5f5f5;
    color: #1c1c1c;
}

[data-theme="light"] .page-header-section h1 {
    color: #1c1c1c;
}

[data-theme="light"] h2 {
    color: #1c1c1c;
}

[data-theme="light"] .track-form-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .card-header h2 {
    color: #1c1c1c;
}

[data-theme="light"] .info-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .info-card h3 {
    color: #1c1c1c;
}

[data-theme="light"] .info-box {
    background: #f5f5f5;
    border-left: 4px solid #7ba3f0;
}

[data-theme="light"] .info-box p {
    color: #1c1c1c;
}