/* Genel stiller */
#file-upload-form {
    margin: 20px 0;
}

#upload-response {
    margin-top: 10px;
}

/* Bildirim stilleri */
#notification-container {
    width: 800px;
    margin-top: 10px;
    margin: auto;
}
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    color: #fff;
    border-radius: 5px;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.notification-success {
    display: none;
	background-color:green;
	color: white;
	padding: 10px;
	margin-top: 10px;
	width: 800px;
	margin: auto;
}
.notification-close{
	background: none;
	border: none;
	color: white;
	float: right;
	cursor: pointer;
	padding: 0px 10px 0px 10px;
}
.notification.error {
    background-color: red;
}
.delete-file-link {
	display: flex;
    justify-content: center !important;
    align-items: center !important;
}

/* Drop area stilleri */
#drop-area {
    border: 2px dashed #ccc;
    border-radius: 5px;
    width: 800px; /* Drop area genişliği */
    height: 200px;
    margin: auto;
    display: flex;
    flex-direction: column; /* Dikey hizalama */
    align-items: center; /* İçerikleri merkezleştirme */
    justify-content: center; /* İçerikleri ortalama */
    position: relative; /* Butonu konumlandırmak için */
    padding: 20px; /* İç boşluk */
    margin-bottom: 10px; /* Buton ile arasındaki mesafe */
    transition: border-color 0.3s; /* Sınır renginin geçişi için */
}

#drop-area.highlight {
    border-color: #6c757d; /* Vurgulama rengi */
}

/* Progress bar stilleri */
#progress-container {
    width: 800px; /* Drop area ile aynı genişlikte */
    margin-top: 10px;
    margin: auto;
}

#progress-bar {
    width: 0%; /* Başlangıç genişliği */
    height: 20px;
    background: green; /* İlerleme çubuğunun rengi */
    border-radius: 5px; /* Kenarları yuvarlatmak için */
}

/* Buton stilleri */
#file-upload-button {
    margin-top: 10px; /* Buton ile metin arasındaki mesafe */
}

#upload-button {
    position: absolute; /* Mutlak konumlandırma */
    bottom: 10px; /* Drop area'nın altından 10px yukarıda */
    right: 10px; /* Drop area'nın sağından 10px içeride */
}

/* Seçilen dosya metni için stiller */
#selected-file {
    margin-top: 10px; /* Seçilen dosya metni ile önceki öğe arasında boşluk */
    font-weight: bold;
    display: none; /* Başlangıçta gizli */
}
/* Genel stiller */
.wrap {
    margin: 20px;
}

/* Tablo stilleri */
.widefat.fixed {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.widefat.fixed thead th {
    background-color: #0073aa;
    color: white;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.widefat.fixed tbody td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.widefat.fixed tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.widefat.fixed tbody tr:hover {
    background-color: #ddd;
}

/* Genel stiller */
.wrap {
    margin: 20px;
    font-size: 12px;
	font-weight: bold;
}

/* Tablo stilleri */
.widefat.fixed {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.widefat.fixed thead th {
    background-color: #4a4a4a;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.widefat.fixed tbody td {
    padding: 15px;
    border-bottom: 1px solid #ffffff;
    color: #333;
}

.widefat.fixed tbody tr:nth-child(even) {
    background-color: #e3e3e3;
}

.widefat.fixed tbody tr:hover {
    background-color: #cdcdcd;
}

/* Arama kutusu stilleri */
#search-box {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#search-box:focus {
    border-color: #6c757d;
    outline: none;
    box-shadow: 0 0 5px rgba(108, 117, 125, 0.5);
}

/* Bildirim stilleri */
#notification {
    display: none;
    background-color: #28a745;
    color: white;
    padding: 12px;
    margin-top: 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Silme butonu stilleri */
.delete-file-button {
    border: none;
    padding: 8px 12px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
	outline: none; /* Butona tıklandığında */
}

.delete-file-button:hover {
    background-color: #c82333;
	color: #fff;
}
.gnn-donate-icon::after {
    content: '☕';
    margin-left: 3px;
}