body {
    font-family: "Google Sans Flex", sans-serif;
    padding-top: 54px;
    background-color: #f4f4f4;
}

#mainNav {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    position: fixed;
    width: 100%;
    top: 0;

    padding-top: 4px;
    padding-bottom: 4px;

    min-height: 54px;

    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    z-index: 999;
}

.svgbtn {
    background: transparent;
    padding: 0;
    border: 0;
    color: #434343;
}

.svgbtn:hover {
    background-color: gainsboro;
    color: #000000;
}

.borderless-input {
    border: none;               
    outline: none;
}

.alert-pop-up {
    position: fixed;
    top: 20px;
    right: 20px;
    opacity: 0;
    pointer-events: none; /* tıklamaları engellesin */
    transition: opacity 0.5s ease-in-out;
    z-index: 9999;
}

.alert-pop-up.show {
    opacity: 1;
    pointer-events: auto;
}

.bg-blue-subtle {
    background-color: rgb(210, 232.8, 255)
};

.modal-backdrop {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);        
}

.modal-header .btn-close {
    order: -1; 
    margin-left: 0;    
    margin-right: 15px;    
    background-size: contain;
    background-position: center;
    opacity: 1;
    width: 0.6em; 
    height: 0.6em;
}

.modal-header {
    padding: 24px 16px 24px 16px;
    justify-content: flex-start;
}

.modal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.modal-content {
    border-radius: 20px;
}

textarea {
    resize: none;
}

.s-card {
    padding: 12px;
    background-color: #fff;
}

.input-icon-wrapper {
    position: relative;
}
.input-icon-wrapper .bi {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--bs-gray); 
    pointer-events: none; 
    z-index: 5;
}
.input-icon-wrapper .form-control {
    padding-left: 2.8rem; /* İkonun genişliğine göre padding */
}

textarea.form-control.is-invalid,
.was-validated textarea.form-control:invalid {
    background-image: none;      
}

/* Remove step buttons on input-type="number" */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
} 

