/* Kariyer Ayarları Sayfası Stilleri */
.kariyer-kart {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.kariyer-kart:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.kariyer-kart .kart-baslik {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
    color: #3BB77E;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.kariyer-kart .kart-icerik {
    padding: 15px;
}

.kariyer-kart .form-group {
    margin-bottom: 15px;
}

.kariyer-kart .form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.kariyer-kart textarea {
    resize: vertical;
    min-height: 80px;
}

.kariyer-rozet {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #3BB77E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    margin-right: 15px;
}

.radio-group {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    padding: 8px 15px;
    flex: 1;
    text-align: center;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-group input[type="radio"]:checked + label {
    background-color: #3BB77E;
    color: white;
    font-weight: 600;
}

.input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-row .form-group {
    flex: 1;
}

.seviye-sayisi-grup {
    display: flex;
    gap: 10px;
}

.seviye-sayisi-grup .form-control {
    text-align: center;
}

#kariyerSeviyeleriContainer {
    /*display: flex;
    flex-wrap: wrap;
    gap: 20px;*/
    width:100%;
    display:inline-block
}

.kariyer-kart-col {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

@media (max-width: 992px) {
    .kariyer-kart-col {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .kariyer-kart-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

