/* bootstrap-mini.css
   Bu proje için gerekli olabilecek minimum “bootstrap benzeri” altyapı.
   Amaç: container/grid gibi temel şeyler lazım olursa sayfa bozulmasın.
*/

/* --- Basic reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}

/* --- Containers (Bootstrap isimleri) --- */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: min(1140px, calc(100% - 10px));
  margin-left: auto;
  margin-right: auto;
}

/* --- Basic grid helpers (kullanırsan diye) --- */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.row > * {
  padding-left: 8px;
  padding-right: 8px;
}

/* --- Very common utilities (gerekirse) --- */
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-center {
  align-items: center !important;
}
.text-center {
  text-align: center !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
