/* Toyotetsu Kariyer Sistemi - Site CSS Güncellemeleri */

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Focus stilleri Toyotetsu temasına göre güncellendi */
.btn:focus, 
.btn:active:focus, 
.btn-link.nav-link:focus, 
.form-control:focus, 
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #DC143C;
}

/* Ek genel stiller - Sade Tasarım */
body {
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #272727;
    margin: 0px;
    overflow-x: hidden;
}

.sticky-top {
    top: 20px !important;
}

/* Responsive text stilleri */
@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
}

/* Smooth transitions */
* {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Loading overlay */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.form-section {
    margin-bottom: 4rem; 
}

.nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem; 
}

.nav-link.active,
.nav-link:hover {
    color: #DC143C !important; 
    font-weight: bold;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    box-shadow: none !important;
    border-color: #DC143C;
}

.form-select {
    background-size: 16px 16px;
}

.form-check-input {
    border-radius: 50%;
}

.form-check-input:checked {
    border-radius: 50%;
}

.m-btn-line {
    border: 1px solid #DC143C;
    color: #DC143C;
    background-color: transparent;
}

.m-btn-line:hover {
    background-color: #DC143C;
    color: #fff;
}

/* Inline stil yerine kullanılan yardımcı sınıflar */
.career-container {
    padding-top: 4rem;
}

.alert-career-info {
    background-color: #ffffff;
    color: #DC143C;
}

.textarea-80 {
    min-height: 120px;
}

.textarea-100 {
    min-height: 140px;
}

/* Tüm textarea'lara genel yükseklik */
textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.cursor-pointer {
    cursor: pointer;
}

.pointer-events-none {
    pointer-events: none;
}

.recaptcha-scale {
    transform: scale(0.87);
    -webkit-transform: scale(0.87);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

.modal-body-scroll {
    height: 70vh;
    overflow-y: auto;
}

.spinner-lg {
    width: 3rem;
    height: 3rem;
}

.icon-xxl {
    font-size: 4rem;
}

.is-hidden {
    display: none !important;
}