/* Custom styles for the job application system */

/* Ekol Hastanesi Renk Paleti */
:root {
    --ekol-blue: #2E4F99;
    --ekol-red: #E53E3E;
    --ekol-light-blue: #4A6FA5;
    --ekol-dark-blue: #1E3A8A;
}

/* Logo ve Başlık Stilleri */
.hospital-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.hospital-title {
    color: var(--ekol-blue);
    font-weight: bold;
    margin-bottom: 0;
}

.subtitle {
    color: var(--ekol-light-blue);
    font-size: 0.8em;
    font-weight: normal;
}

/* Ekol Renk Sınıfları */
.ekol-primary {
    color: var(--ekol-blue) !important;
}

.ekol-card {
    border: 2px solid var(--ekol-blue);
    border-radius: 15px;
}

.btn-ekol {
    background-color: var(--ekol-blue);
    border-color: var(--ekol-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-ekol:hover {
    background-color: var(--ekol-dark-blue);
    border-color: var(--ekol-dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 79, 153, 0.3);
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    position: relative;
    font-weight: bold;
}

.step.active {
    background-color: var(--ekol-blue);
    color: white;
}

.step.completed {
    background-color: var(--ekol-red);
    color: white;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 20px;
    height: 2px;
    background-color: #e9ecef;
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step.completed::after {
    background-color: var(--ekol-red);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(46, 79, 153, 0.1);
    border: 1px solid rgba(46, 79, 153, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color: white !important;
}

.navbar-brand:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Custom file input styling */
.form-control[type="file"] {
    padding: 0.375rem 0.75rem;
}

/* Status badge colors */
.badge-beklemede {
    background-color: #ffc107;
    color: #000;
}

.badge-degerlendiriliyor {
    background-color: var(--ekol-blue);
}

.badge-kabul {
    background-color: var(--ekol-red);
}

.badge-red {
    background-color: #dc3545;
}

/* Form elementleri için Ekol renkleri */
.btn-primary {
    background-color: var(--ekol-blue);
    border-color: var(--ekol-blue);
}

.btn-primary:hover {
    background-color: var(--ekol-dark-blue);
    border-color: var(--ekol-dark-blue);
}

.text-primary {
    color: var(--ekol-blue) !important;
}

.border-primary {
    border-color: var(--ekol-blue) !important;
}

/* Responsive table */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .hospital-logo {
        max-width: 150px;
    }
}