/* Genel Body Ayarları */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 0;
}

/* Footer */
.footer {
    width: 100%;
    height: 50px;
    background: #343a40;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    font-size: 14px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    background: #343a40;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    overflow-y: auto; /* Sidebar taşarsa kaydırma çubuğu olsun */
}

/* İçerik Alanı */
.content {
    margin-left: 250px;
    margin-top: 70px !important; /* Navbar ile çakışmayı önlemek için */
    padding: 20px;
    padding-bottom: 80px; /* footer'ın yüksekliği kadar alan bırak */
}

/* Sidebar Menü Stili */
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}
/* Yönetici için özel tasarım */
.admin-body {
    background-color: #f8f9fa; /* Açık renk arka plan */
}

/* Yönetici Sidebar Rengi */
.admin-sidebar {
    background-color: #23272b !important; /* Daha koyu bir sidebar */
	 position: relative;
    z-index: 10;
}

/* Yönetici Footer */
.admin-footer {
    background-color: #343a40 !important;
}
/* Form Stilleri */
.form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.form-container input, .form-container select, .form-container textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-container button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    margin-top: 15px;
    cursor: pointer;
}

.form-container button:hover {
    background: #0056b3;
}
/* Form Genel Tasarımı */
.form-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Form Grupları */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Giriş Alanları */
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 24px;
}
/* Kullanıcı ve birim seçimini sidebar'dan üstte tut */
#userSelect {
    /* Size and position */
    position: relative; /* Enable absolute positioning for children and pseudo elements */
    width: 200px;
    padding: 10px;
    margin: 0 auto;

    /* Styles */
    background: #04476b;
    color: #fff;
    font-size: 20px;
    outline: none;
    cursor: pointer;

    /* Font settings */
    font-weight: bold;
	/* max-width: 250px;
    margin-bottom: 10px; */
}
.userhaktablo {
   background-color: #04476b;
        margin-top: 5px;
        font-size: 24px;
        color: white;
        
      }

#folderList {
     display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    max-width: calc(100% - 280px); /* Sidebar'ın genişliği kadar içerikten çık */
    overflow: hidden;
}

#folderList button {
    background-color: #04476b;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
    min-width: 120px;
    text-align: center;
}

#folderList button:hover {
    background-color: #0056b3;
}

#fileList {
   background: white;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    max-width: 50%;
    min-width: 300px;
    margin-top: 15px;
    margin-left: 20px;
    overflow: hidden;
}

#fileList label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #0056b3;
}

#admin_sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background: #343a40;
    z-index: 100;
    overflow-y: auto;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #007bff !important;
    color: white;
    border: none;
}