

.single-hero-slider:hover .slider-edit-button {
    display: flex;
}

.left-sheet {
    position: fixed;
    left: -410px;
    top: 0;
    width: 410px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    transition: left 0.3s ease;
}

.left-sheet.active {
    left: 0;
    padding:20px;
}

/* Input group stilleri */
.input-group {
    position: relative;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    width: 100%;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-group-append {
    display: flex !important;
    margin-left: -1px;
}

.input-group-append label.btn {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    cursor: pointer;
    height: 100%;
}

/* Önizleme alanı stilleri */
#imagePreview {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    background: #f8f9fa;
}

#imagePreview img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

/* Form grup stilleri */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Input stilleri */
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.hero-slider-1 {
    position: relative;
    overflow: hidden;
}

.single-hero-slider {
    position: relative;
    height: 500px; /* İstediğiniz yüksekliği ayarlayabilirsiniz */
    background-size: cover;
    background-position: center;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

/* Slick slider ok stilleri */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

/* Slick slider nokta stilleri */
.slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 0;
    padding: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: #fff;
}

/* Slider içerik stilleri */
.slider-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.slider-content p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Button group stilleri */
.button-group {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.button-group .btn {
    flex: 1;
    min-width: 80px;
    height: 38px;
    padding: 8px 15px;
    font-size: 14px;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buton stilleri */
.btn {
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.slider-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.slider-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-image {
    width: 120px;
    height: 80px;
    margin-right: 20px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-info {
    flex: 1;
    display: flex;
    align-items: center;
}

.slider-info .badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    margin-right: 5px;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-secondary {
    background-color: #6c757d;
    color: white;
}

.badge-info {
    background-color: #17a2b8;
    color: white;
}

.actions {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.edit-button, .delete-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.edit-button {
    color: #007bff;
}

.delete-button {
    color: #dc3545;
}

.edit-button:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.delete-button:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.edit-button i, .delete-button i {
    font-size: 18px;
}

.slider-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 15px;
}

.slider-list-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.slider-list-container {
    padding: 0 0px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.slider-list-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    margin-bottom: 10px;
    background: #fff;
    transition: all 0.2s ease;
}

.slider-list-item:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider-list-image {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

.slider-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-list-info {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
}

.order-badge {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #495057;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.active {
    background: #28a745;
    color: white;
}

.status-badge.inactive {
    background: #6c757d;
    color: white;
}

.slider-list-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon.edit {
    color: #007bff;
}

.btn-icon.delete {
    color: #dc3545;
}

.btn-icon:hover.edit {
    background-color: rgba(0, 123, 255, 0.1);
}

.btn-icon:hover.delete {
    background-color: rgba(220, 53, 69, 0.1);
}

.btn-icon i {
    font-size: 16px;
}

.modal-edit-button {
    position: absolute;
    top: 10px;
  
    background: rgba(0, 0, 0);
    border: none;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1060;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.modal-edit-button:hover {
    background: #353535;
    transform: scale(1.1);
}

.modal-edit-button i {
    color: #fff;
    font-size: 18px;
}

.modal-dialog:hover .modal-edit-button {
    display: flex;
}
