
#file-label:after {
    content: "Dosya Seç" !important;
    width: 30%;
    text-align: center;
}

/*body{
    background-image: url("bg-il.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 200px;
}*/
.table thead tfoot th {
    color: black !important;
    background-color: #e4e4ff;
    font-size: 0.9rem;
    font-weight: unset !important;
}

.table thead th input {
    height: unset;
}

.fade-effect {
    animation: fadeInOut 2s infinite; /* 3 saniyede bir döngü yapan animasyonu uygula */
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.login-bg {
    background-image: url("./bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    min-width: 100vw;
    font-family: "Roboto Mono", "Liberation Mono", Consolas, monospace;
    color: rgba(255, 255, 255, 0.87);
}

.login-bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(28, 36, 93, 0.4); /* Siyah renk ve %50 opaklık */
    z-index: -1; /* Resmin altında kalacak */

}

.avatar-sm img {
    width: 32px;
    height: 32px;
}

.profile-user-img {
    width: 8rem;
    height: 8rem;
}
.card{
    padding: 0px;
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}
.card .overlay.dark, .info-box .overlay.dark, .overlay-wrapper .overlay.dark, .small-box .overlay.dark {
    background-color: rgba(0, 0, 0, .3);
}
.card .overlay, .info-box .overlay, .overlay-wrapper .overlay, .small-box .overlay {
    border-radius: 0.25rem;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .7);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 50;
}
.card>.loading-img, .card>.overlay, .info-box>.loading-img, .info-box>.overlay, .overlay-wrapper>.loading-img, .overlay-wrapper>.overlay, .small-box>.loading-img, .small-box>.overlay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.pulse{
    animation: pulse 1s infinite ease;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.75);
    }
    100% {
        transform: scale(1);
    }
}
.delete-x-link{
    transition: 0.5s ease;
    color: black;
    padding: 0.1rem;
    font-size: 0.7rem;
    font-weight: bolder;
}
.delete-x-link:hover{

    text-decoration: none;

    color: white;
}
/*CUSTOM RADIO*/
.custom-radio-label{
    display:block;
    line-height:40px;
}
.custom-radio-label:hover{
    cursor:pointer;
}
.custom-radio-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 8px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
}
.custom-radio-input:hover {
    background: #9faab7;
}
.custom-radio-input:checked {
    background: #000a7f;
}
.custom-radio-input:checked::before {
    width: 25px;
    height: 25px;
    display:flex;
    content: '\f00c';
    font-size: 10px;
    font-weight:bold;
    position: absolute;
    align-items:center;
    justify-content:center;
    font-family:'Font Awesome 5 Free';
}
.custom-radio-input:checked::after {
    -webkit-animation: click-wave 0.75s;
    -moz-animation: click-wave 0.75s;
    animation: click-wave 0.75s;
    background: #000a7f;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}
.custom-radio-input.radio {
    border-radius: 50%;
}
.custom-radio-input.radio::after {
    border-radius: 50%;
}

@keyframes click-wave {
    0% {
        height: 25px;
        width: 25px;
        opacity: 0.5;
        position: relative;
    }
    100% {
        height: 75px;
        width: 75px;
        margin-left: -25px;
        margin-top: -25px;
        opacity: 0;
    }
}
/*END CUSTOM RADIO*/


