.profile-wid-bg::before {
    opacity: 0.4;
}
.table tbody tr:hover {
    background-color: #ffd700 !important; /* Yeni hover rengi */
    color: #000!important; /* Yazı rengini değiştir (Opsiyonel) */
}

/* Türk Plakası Tasarımı */
.plate {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #000;
    border-radius: 8px;
    padding: 4px 8px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    height: 32px;
}

.plate::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plate::after {
    content: 'TR';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.plate span {
    margin-left: 35px;
    color: #1f2937;
    font-weight: 700;
}

/* Tüm görünürlük butonları için varsayılan stil */
div.dt-button-collection button.dt-button {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    text-align: left;
    transition: background-color 0.2s ease;
    color: #212529;
}

/* Seçili olanlar için success görünüm */
div.dt-button-collection button.dt-button.active:not(.disabled) {
    background-color: #198754 !important; /* Bootstrap success */
    border-color: #198754 !important;
    color: #fff !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* Hover efekti seçili olanlar için daha koyu success */
div.dt-button-collection button.dt-button.active:hover {
    background-color: #157347!important;
    border-color: #157347;
}
