/* User Menu Styling */
.user-menu {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

/* User Toggle (Hesabım) */
.user-menu-toggle {
    display: flex;
    align-items: left;
    text-decoration: none;
    color: #FF8000;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
}

.user-menu-toggle .user-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
/* User Info (Admin Username) */
.user-info {
    font-weight: bold;
    padding: 6px 12px; /* Ensure left alignment */
    color: blue;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    text-align: left;
}


/* Logout Button */
.logout {
    color: red;
    font-weight: bold;
    padding: 6px 10px;
    border-top: 1px solid #eee;
    text-align: left;
    display: block; /* Ensure full width */
}

/* General Form Styling */
.form-group {
    margin-bottom: 20px; /* Ensure spacing between form fields */
    position: relative;
}

/* Style for Labels */
.form-label {
    display: block; /* Places label above input */
    margin-bottom: 8px; /* Space between label and input */
    font-weight: bold;
}

/* Input Field Styling */
.form-control {
    padding: 12px; /* Better padding for readability */
    font-size: 14px;
}

/* Profile Container - Expanded Width */
.profile-container {
    width: 85%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

/* Blue Text Styling */
.text-blue {
    color: #007bff;
    font-weight: bold;
}

/* Primary Button */
/* Primary Button */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Secondary Button */
.btn-secondary {
    background-color: #ccc;
    border-color: #ccc;
    color: black;
}

.btn-secondary:hover {
    background-color: #b3b3b3;
}

/* Password Toggle Icon */
.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: gray;
}

.toggle-password:hover {
    color: #007bff;
}

/* Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    margin-right: 10px;
}

/* Hide default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Slider Styling */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

/* Slider Circle */
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

/* Active Switch */
.switch input:checked + .slider {
    background-color: #4CAF50;
}

/* Move Circle when Checked */
.switch input:checked + .slider:before {
    transform: translateX(14px);
}

/* Rounded Switch */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/* 🔥 Dropzone kutusunu tamamen görünmez yap */
.dropzone {
    border: none !important;
    background: none !important;
    min-height: 0 !important;
    padding: 0 !important;
}

/* 🔥 Dropzone'un boş mesajını tamamen gizle */
.dropzone .dz-message {
    display: none !important;
}

/* General Form Layout */
.form-group {
    margin-bottom: 20px;
}

/* Row Spacing */
.row.g-3 {
    gap: 20px;
}

/* Form Inputs */
.form-control {
    padding: 10px 12px;
    font-size: 15px;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #ccc;
    border-color: #ccc;
    color: black;
}

/* Responsive Tweak for Mobile */
@media (max-width: 768px) {
    .profile-container {
        width: 95%;
        padding: 20px;
    }
}