/* ----------------------------------------------------------   BREADCRUMB STİLLERİ */
.breadcrumb {
    background-color: #f1f0f0;
    padding: 8px 15px;
    border-radius: 0.375rem;
    font-size: 1.5rem;
}

.breadcrumb-item a {
    color: #FF4800;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}





/* ---------------------------------------------------------- RESİM SEÇME KUTUSU STİLLERİ */
.photo-upload-box {
    position: relative;
    width: 400px;
    height: 250px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    background-color: #fff;
}

.photo-upload-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.photo-upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    opacity: 0;
    transition: 0.3s;
}

.photo-upload-box:hover .photo-upload-overlay {
    opacity: 1;
}

.photo-upload-input {
    display: none;
}

#removePhotoBtn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc3545;
    border: none;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    display: none;
    /* Başta gizli */
}

@media (max-width: 1570px) {
    .photo-upload-box {
        width: 300px;
    }
}


@media (max-width: 1199px) {
    .photo-upload-box {
        width: 400px;
    }
}

@media (max-width: 491px) {
    .photo-upload-box {
        width: 350px;
    }
}

@media (max-width: 400px) {
    .photo-upload-box {
        width: 250px;
    }
}
@media (max-width: 300px) {
    .photo-upload-box {
        width: 200px;
    }
}