﻿
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}
/* Satır */
.boot_row {
    display: flex;
    flex-wrap: wrap;
 
}
.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

/* Sütun ana sınıfı */
.boot_col {
    flex: 1 0 0%; 
    box-sizing: border-box;
}

/* Sabit genişlikli sütunlar */
.boot_col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.boot_col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.boot_col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.boot_col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.boot_col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.boot_col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.boot_col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.boot_col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.boot_col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.boot_col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.boot_col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.boot_col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive (mobilde sütunlar alt alta gelsin) */
@media (max-width: 768px) {
    .boot_col,
    .boot_col-1, .boot_col-2, .boot_col-3, .boot_col-4,
    .boot_col-5, .boot_col-6, .boot_col-7, .boot_col-8,
    .boot_col-9, .boot_col-10, .boot_col-11, .boot_col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

/* Margin */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}
/* LTR için sol, RTL için sağ */
.me-1 {
    margin-right: 0.25rem !important;
}
/* LTR için sağ, RTL için sol */

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* Padding */
.p-1 {
    padding: 0.25rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

/* Margin auto (ör: ortalamak için) */
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.me-auto {
    margin-right: auto !important;
}

.ms-auto {
    margin-left: auto !important;
}
/* Küçük yazı (Bootstrap 5.3) */
.small, small {
    font-size: 0.875em !important;
}

/* fs-* sınıfları */
.fs-1 {
    font-size: 2.5rem !important;
}

.fs-2 {
    font-size: 2rem !important;
}

.fs-3 {
    font-size: 1.75rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}