﻿/* ArÄ±zalar SayfasÄ± - Minimal Glass Design */

/* Sayfa BaÅŸlÄ±ÄŸÄ± */
.page-title-section {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.page-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Filtreleme BÃ¶lÃ¼mÃ¼ - Glass Effect */
.filters-section {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 133, 27, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ArÄ±za KartlarÄ± - Minimal ve KÃ¼Ã§Ã¼k */
.problems-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 133, 27, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 133, 27, 0.3);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff851b, #ffc107);
    border-radius: 16px 16px 0 0;
}

/* Problem Header - Minimal */
.problem-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.problem-title-section {
    flex: 1;
}

.problem-title-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.problem-title-section h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.problem-title-section h3 a:hover {
    color: #ff851b;
}

.problem-vehicle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.problem-vehicle a {
    color: #ff851b;
    text-decoration: none;
    font-weight: 600;
}

.problem-vehicle a:hover {
    color: #e07600;
}

.motor-info {
    background: rgba(108, 117, 125, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #495057;
}

/* Severity Badge - KÃ¼Ã§Ã¼k */
.problem-severity .severity-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.severity-low {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.severity-medium {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.severity-high {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Problem Content - Kompakt */
.problem-content {
    margin-bottom: 1rem;
}

.problem-description {
}

.problem-description p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.problem-symptoms {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 133, 27, 0.05);
    border-left: 3px solid #ff851b;
    border-radius: 0 8px 8px 0;
}

.problem-symptoms strong {
    color: #ff851b;
}

.problem-cost {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.problem-cost i {
    color: #ffc107;
}

.problem-cost strong {
    color: #333;
}

.cost-amount {
    color: #ff851b;
    font-weight: 600;
}

/* Problem Footer - Minimal */
.problem-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 133, 27, 0.1);
    gap: 1rem;
}

.problem-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.stat-item i {
    color: #ff851b;
    width: 14px;
}

.stat-item.experienced {
    color: #28a745;
    font-weight: 600;
}

.stat-item.comments {
    color: #007bff;
}

/* Problem Actions - Minimal Buttons */
.problem-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-primary.btn-sm {
    background: linear-gradient(135deg, #ff851b, #ffc107);
    color: white;
}

.btn-primary.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 27, 0.3);
}

.btn-outline-warning.btn-sm {
    background: transparent;
    color: #ff851b;
    border: 1px solid #ff851b;
}

.btn-outline-warning.btn-sm:hover {
    background: #ff851b;
    color: white;
    transform: translateY(-2px);
}

.btn-success.btn-sm {
    background: #28a745;
    color: white;
}

.experienced-btn {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Pagination - Glass Style */
.pagination-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 133, 27, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.page-link {
    padding: 0.5rem 0.8rem;
    border: none;
    background: transparent;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.page-link:hover {
    background: rgba(255, 133, 27, 0.1);
    color: #ff851b;
}

.page-link.active {
    background: #ff851b;
    color: white;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-dots {
    padding: 0.5rem;
    color: #999;
}

.pagination-info {
    color: #6c757d;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* No Results - Glass Style */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 133, 27, 0.2);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.no-results-icon {
    font-size: 4rem;
    color: #ff851b;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .problems-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .problem-card {
        padding: 1.2rem;
    }

    .problem-header {
        flex-direction: column;
        gap: 0.8rem;
    }

    .problem-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .problem-stats {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .problem-actions {
        width: 100%;
        justify-content: center;
    }

    .page-title-section h1 {
        font-size: 2rem;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .problems-list {
        gap: 0.8rem;
    }

    .problem-card {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .filters-section {
        margin: 0 0.5rem 2rem 0.5rem;
        padding: 1.5rem;
    }
}

/* Daha kompakt ariza kartlari ve filtre alani */
.problems-page .page-title-section {
    margin: 1rem 0 1.5rem;
}

.problems-page .page-title-section h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.problems-page .filters-section {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    border-radius: 14px;
}

.problems-page .problems-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.problems-page .problem-card {
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.problems-page .problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.problems-page .problem-header {
    margin-bottom: 0.6rem;
    gap: 0.6rem;
}

.problems-page .problem-title-section h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    line-height: 1.25;
}

.problems-page .problem-description p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.problems-page .problem-symptoms {
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
}

.problems-page .problem-cost {
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
}

.problems-page .problem-footer {
    padding-top: 0.6rem;
}

.problems-page .problem-content {
    margin-bottom: 0.8rem;
}

.problems-page .problem-vehicle {
    font-size: 0.8rem;
    gap: 0.4rem;
}

.problems-page .motor-info {
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
}

.problems-page .severity-badge {
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
}

.problems-page .stat-item {
    font-size: 0.8rem;
    gap: 0.25rem;
}

.problems-page .btn-sm {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
}
