

a[data-id="addTicket"],a[data-id="addticket"],.Footer__footerBg,__

     .ticketList .NoContentcontentDescription p[data-id="no_ticket_desc"]{

              display:none;

      }

/* Kurumsal Konteyner */
.request-wrapper {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.request-header {
    text-align: center;
    margin-bottom: 50px;
}

.request-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.request-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Kart Izgarası */
.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* Kart Tasarımı */
.request-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Hover Efekti (S3M Turuncusu) */
.request-card:hover {
    transform: translateY(-5px);
    border-color: #e46317;
    box-shadow: 0 15px 30px rgba(228, 99, 23, 0.1);
}

/* İkon Tasarımı */
.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    fill: #444;
    transition: fill 0.3s ease;
}

.request-card:hover .card-icon {
    fill: #e46317;
}

/* Metin Tasarımı */
.card-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.request-card:hover .card-label {
    color: #e46317;
}


/* Kaynaklar Bölümü Konteyner */
.resource-wrapper {
    padding: 40px 20px;
    background-color: #fcfcfc;
    border-top: 1px solid #f0f0f0;
    font-family: 'Segoe UI', Arial, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
}

.resource-header {
    text-align: center;
    margin-bottom: 30px;
}

.resource-header h2 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.resource-header p {
    color: #777;
    font-size: 15px;
}

/* İkili Izgara Yapısı */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    justify-items: center; /* Kartların kendisini ızgarada ortalar */
}

/* Kart Tasarımı */
.resource-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* İÇERİĞİ YATAYDA ORTALAR (Eksik olan buydu) */
    padding: 25px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%; /* Kartın ızgara alanını tam doldurmasını sağlar */
    box-sizing: border-box;
}

.resource-card:hover {
    border-color: #e46317;
    box-shadow: 0 8px 20px rgba(228, 99, 23, 0.08);
    transform: translateY(-3px);
}

.res-icon {
    width: 32px;
    height: 32px;
    fill: #e46317;
    margin-right: 15px; /* Boşluğu biraz daralttım */
    flex-shrink: 0;
}

.res-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 600px) {
    .resource-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}
