/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
    margin: 0;
}

/* Hero Arka Plan */
.hero-background {
    background-image: url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85);
}

.hero-background .container {
    position: relative;
    z-index: 1;
    color: white;
}

/* Header Stilleri */
header {
    padding: 1.5rem 0;
}

header .logo h1 {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

header .logo p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main İçerik */
main {
    padding: 2rem 0;
}

/* Hero İçerik */
.hero-content {
    text-align: center;
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Takip Bölümü */
.tracking-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
}

.tracking-container {
    max-width: 700px;
    margin: 0 auto;
}

.tracking-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.tracking-header p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tracking-form-wrapper {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.tracking-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.9);
}

.input-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
    background: white;
}

.track-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.track-button:hover {
    background: linear-gradient(135deg, #2980b9, #2573a7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Özellikler Bölümü */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    color: white;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

.feature p {
    opacity: 0.9;
}

/* Mesaj Stilleri */
.message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer Stilleri */
footer {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* Modern Footer */
.modern-footer {
    background: rgba(30, 40, 50, 0.95);
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #3498db;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

/* Admin Paneli Stilleri */
.admin-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Stilleri */
.sidebar {
    width: 250px;
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
}

.sidebar-header {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.sidebar-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.sidebar-header p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(255,255,255,0.1);
    border-left: 3px solid #3498db;
}

/* Admin Main İçerik */
.admin-main {
    flex: 1;
    background: #f8f9fa;
}

.admin-header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.admin-header h1 {
    color: #2c3e50;
}

.admin-content {
    padding: 0 1.5rem 2rem;
}

.admin-panel {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.admin-panel h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Form Stilleri */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.admin-panel .form-group {
    margin-bottom: 1.5rem;
}

.admin-panel .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.admin-panel .form-group input,
.admin-panel .form-group select,
.admin-panel .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.admin-panel .form-group input:focus,
.admin-panel .form-group select:focus,
.admin-panel .form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.admin-panel button {
	max-width: 160px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-panel button:hover {
    background: linear-gradient(135deg, #2980b9, #2573a7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Tablo Stilleri */
.motor-list {
    margin-top: 2rem;
}

.motor-list.modern-table {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 2rem;
    overflow: hidden;
    width: 100%;
}

.motor-list.modern-table h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Modern Tablo Tasarımı */
.modern-table-design {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.modern-table-design thead {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.modern-table-design th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.modern-table-design td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.modern-table-design tbody tr:hover {
    background-color: #f8f9fa;
}

.modern-table-design tbody tr:last-child td {
    border-bottom: none;
}

.modern-table-design .tracking-code {
    font-family: monospace;
    font-weight: bold;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Modern Tablo Tasarımı - Genişlik İyileştirmeleri */
.modern-table-design {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    table-layout: auto; /* Otomatik sütun genişliği */
    min-width: 800px; /* Minimum genişlik */
}

.modern-table-design thead {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.modern-table-design th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Başlıklarda satır kaydırma */
}

.modern-table-design td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    white-space: nowrap; /* Hücrelerde satır kaydırma */
}

.modern-table-design tbody tr:hover {
    background-color: #f8f9fa;
}

.modern-table-design tbody tr:last-child td {
    border-bottom: none;
}

.modern-table-design .tracking-code {
    font-family: monospace;
    font-weight: bold;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Tablo Genişliği İçin Container */
.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin: 0; /* Boşlukları kaldır */
    padding: 0; /* Boşlukları kaldır */
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

/* Admin Login Stilleri */
.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #2c3e50, #1a2a3a);
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.login-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* İçerik Bölümü */
.content-section {
    margin: 3rem 0;
}

.content-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.content-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #3498db;
}

.content-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #3498db;
}

.content-card p {
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.content-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Motor Detay Kartı */
.motor-detail-section {
    margin: 3rem 0;
}

.motor-detail-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.card-header {
    background: rgba(52, 152, 219, 0.9);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.card-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-beklemede {
    background: #f39c12;
}

.status-islemde {
    background: #3498db;
}

.status-tamamlandi {
    background: #2ecc71;
}

.card-body {
    padding: 2rem;
}

.motor-info .info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.motor-info .info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #fff;
}

.info-value {
    color: #0000000;
    font-weight: 500;
}

.tracking-code {
    font-family: monospace;
    font-weight: bold;
    background: rgba(0,0,0,0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Açıklama Bölümü Stilleri */
.description-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.description-section h3 {
    margin-bottom: 15px;
    color: white;
}

.description-content {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
}

.description-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.description-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.description-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.description-date {
    font-weight: 600;
    color: #ecf0f1;
    font-size: 0.9rem;
}

.description-author {
    background: #3498db;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.description-text {
    color: #ecf0f1;
    line-height: 1.5;
}

/* İletişim Sayfası */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    color: white;
}

.contact-card h3 {
    margin-top: 0;
    color: #3498db;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #3498db;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
}

.contact-form-inner .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-inner .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.contact-form-inner .form-group input,
.contact-form-inner .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-form-inner .form-group input:focus,
.contact-form-inner .form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
    background: white;
}

.submit-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #2980b9, #2573a7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Geri Dön Linki */
.back-link {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.back-link:hover {
    background: rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close:hover,
.close:focus {
    color: black;
}

.modal-content h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-content .form-group {
    margin-bottom: 1.5rem;
}

.modal-content .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.modal-content .form-group input,
.modal-content .form-group select,
.modal-content .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.modal-content .form-group input:focus,
.modal-content .form-group select:focus,
.modal-content .form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.modal-content button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-content button:hover {
    background: linear-gradient(135deg, #2980b9, #2573a7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Buton Stilleri */
.btn-edit {
    background: #f39c12;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-edit:hover {
    background: #e67e22;
}

.btn-secondary {
	max-width: 80px;
    background: #95a5a6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
	
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Admin Login Arka Plan */
.login-background {
    background-image: url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.9);
}

.login-background .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 0;
}

.login-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.login-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

/* Login Form */
.login-form {
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.login-form .form-group input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s;
}

.login-form .form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
    background: white;
    transform: translateY(-2px);
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    font-weight: 500;
}

.checkbox-label input {
    margin-right: 10px;
    width: auto;
}

/* Login Button */
.login-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-button:hover {
    background: linear-gradient(135deg, #2980b9, #2573a7);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.login-button:active {
    transform: translateY(-1px);
}

/* Login Footer */
.login-footer {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

/* Admin Header */
.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-user-info span {
    color: #2c3e50;
    font-weight: 500;
}

.logout-button {
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.logout-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Dashboard İstatistikleri */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.stat-card {
    background: #d3d3d3;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.stat-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0;
}

/* Son Eklenen Motorlar */
.recent-motors {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.recent-motors h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Genişletilmiş Form */
.expanded-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 1.5rem;
}

.expanded-form .form-group {
    margin-bottom: 0;
}

.expanded-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.expanded-form .form-group input,
.expanded-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #000000;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.expanded-form .form-group input:focus,
.expanded-form .form-group select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.expanded-form button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expanded-form button:hover {
    background: linear-gradient(135deg, #2980b9, #2573a7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Modern Tablo Tasarımı */
.modern-table {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 2rem;
    overflow: hidden;
}

.modern-table h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.modern-table-design {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.modern-table-design thead {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.modern-table-design th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.modern-table-design td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.modern-table-design tbody tr:hover {
    background-color: #f8f9fa;
}

.modern-table-design tbody tr:last-child td {
    border-bottom: none;
}

.modern-table-design .tracking-code {
    font-family: monospace;
    font-weight: bold;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Şikayet Bölümü */
.complaint-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.complaint-section h3 {
    margin-bottom: 15px;
    color: white;
}

.complaint-content {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 5px;
}

.complaint-content p {
    color: #ecf0f1;
    line-height: 1.6;
    margin: 0;
}

/* Buton Stilleri */
.btn-view-complaint {
    background: #9b59b6;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-view-complaint:hover {
    background: #8e44ad;
}

/* Arama ve Filtreleme Bölümü */
.search-filter-section {
    margin-bottom: 2rem;
}

.search-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: end;
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.search-form .form-group input,
.search-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-form .form-group input:focus,
.search-form .form-group select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-right: 10px;
}

.search-button:hover {
    background: linear-gradient(135deg, #2980b9, #2573a7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reset-button {
    background: #95a5a6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.reset-button:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Şikayet Modal İçeriği */
.complaint-modal-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
}

.complaint-modal-content p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* Tam Genişlikli Tablo */
.full-width-table {
    padding: 0;
    margin: 0;
}

.full-width-table .table-responsive {
    margin: 0;
    padding: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .admin-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    header .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .admin-login-container {
        padding: 10px;
    }
    
    .login-box {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .motor-list table {
        min-width: 600px;
    }
    
    /* Mobil için takip formu */
    .tracking-section {
        padding: 2rem 1rem;
    }
    
    .tracking-header h2 {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group input,
    .track-button {
        width: 100%;
        padding: 15px;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .motor-info .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .info-label {
        font-size: 0.9rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    /* Mobil için footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Mobil için içerik sayfaları */
    .content-card {
        padding: 1.5rem;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    /* Mobil için login sayfası */
    .login-card {
        padding: 2rem;
        margin: 10px;
    }
    
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    /* Mobil için admin paneli */
    .admin-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Mobil için genişletilmiş form */
    .expanded-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobil için modern tablo */
    .modern-table-design {
        font-size: 0.9rem;
        min-width: 600px;
    }
    
    .modern-table-design th,
    .modern-table-design td {
        padding: 8px 10px;
    }
    
    /* Form alanı genişletmeleri */
    .full-width {
        grid-column: 1 / -1;
    }
    
    /* Mobil için arama formu */
    .search-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .search-button,
    .reset-button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Mobil için tablo container */
    .table-responsive {
        margin: 0;
        padding: 0;
    }
    
    /* Mobil için tam genişlikli tablo */
    .full-width-table {
        padding: 0;
        margin: 0;
    }
    
    /* Mobil için container */
    .container-fluid {
        padding: 0 10px;
    }
}