 .login-wrapper { display: flex; max-width: 900px; margin: 40px auto; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #eee; min-height: 450px; font-family: sans-serif; }
        .form-side { flex: 1.2; padding: 40px; }
        .info-side { flex: 1; background: #f8fbff; padding: 40px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #e1eefb; }
        
        .main-title { display: block; margin-bottom: 15px; color: #333; font-size: 1.4rem; font-weight: 700; }
        .sub-text { color: #666; font-size: 0.9rem; margin-bottom: 25px; line-height: 1.5; display: block; }
        
        .input-group { margin-bottom: 18px; }
        .input-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.85rem; color: #444; }
        .input-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; }
        
        .btn-submit { width: 100%; padding: 14px; background: #007bff; color: #fff; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; font-size: 1rem; }
        .btn-submit:hover { background: #0056b3; }
        
        .info-box { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
        .info-box i { color: #007bff; font-size: 1.2rem; margin-top: 4px; }
        .info-box-title { display: block; font-weight: 700; font-size: 1rem; color: #222; margin-bottom: 3px; }
        .info-box-desc { display: block; font-size: 0.85rem; color: #666; line-height: 1.4; }
        
        .status-msg { padding: 12px; border-radius: 6px; background: #fff3cd; color: #856404; border: 1px solid #ffeeba; margin-bottom: 20px; font-size: 0.9rem; }
        
        @media (max-width: 768px) { .login-wrapper { flex-direction: column; margin: 20px; } .info-side { border-left: none; border-top: 1px solid #e1eefb; } } 

.borc-wrapper { max-width: 1100px; margin: 40px auto; padding: 0 20px; font-family: 'Inter', sans-serif; }
    .back-link { text-decoration: none; color: #0056b3; font-weight: 600; margin-bottom: 20px; display: inline-block; }
    
    .borc-card { background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; padding:10px; }
    
    .aski-table { width: 100%; border-collapse: collapse; }
    .aski-table thead { background: #f4f7fa; }
    .aski-table th { padding: 18px; text-align: left; color: #444; font-weight: 600; border-bottom: 2px solid #eee; background:#fbf9fb}
    .aski-table td { padding: 18px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
    
    .badge-info { background: #e7f1ff; color: #0056b3; padding: 4px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; }
    .price-total { color: #2c3e50; font-weight: 800; font-size: 1.1rem; }
    
    .btn-pay { 
        background: #28a745; color: #fff !important; padding: 10px 20px; border-radius: 8px; 
        text-decoration: none; font-weight: 600; transition: 0.2s; display: inline-block;
    }
    .btn-pay:hover { background: #218838; transform: scale(1.05); }
    
    .details-trigger { cursor: help; border-bottom: 1px dotted #999; color: #666; font-size: 0.85rem; }
    
    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .aski-table thead { display: none; }
        .aski-table tr { display: block; margin-bottom: 15px; border: 1px solid #eee; border-radius: 10px; padding: 10px; }
        .aski-table td { display: flex; justify-content: space-between; text-align: right; border: none; padding: 8px 5px; }
        .aski-table td::before { content: attr(data-label); font-weight: bold; text-align: left; color: #888; }
    }
    .detail-table th, .detail-table td { padding: 8px; border-bottom: 1px solid #eee; }
    .fatura-row:hover { background-color: #f1faff; }
    .details-trigger { color: #0056b3; font-size: 0.7rem; display: block; margin-top: 4px; }
    .detail-row { animation: fadeIn 0.3s; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
                      .detail-table {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.detail-table tr:last-child td {
    border-bottom: none;
}

.btn-pdf {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    transition: all 0.2s;
}
.btn-pdf:hover {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.card-form{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.card-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.card-option input{
    display:none;
}

.card{
    width:130px;
    height:110px;
    background:#f5f6fa;
    border-radius:12px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    cursor:pointer;

    transition:all .25s ease;
    border:2px solid transparent;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.icon{
    font-size:26px;
    margin-bottom:8px;
}

.card-option input:checked + .card{
    background:#4a90e2;
    color:white;
    transform:scale(1.05);
    border-color:#2f6fc2;
    box-shadow:0 6px 16px rgba(74,144,226,0.4);
}

.btn{
    padding:10px 25px;
    border:none;
    background:#222;
    color:white;
    border-radius:8px;
    cursor:pointer;
    width:200px;
}

 
