/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f4ff, #fff);
    background-image: linear-gradient(rgba(29, 28, 29, 0.901), rgba(39, 36, 40, 0.5)), url('../image.png');
    
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Hero Section */
.hero {
    text-align: center;
    
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Tracking Section */
.tracking-section {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 20px auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.tracking-section h2 {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.input-name {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

button {
    background: #6a5acd;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #483d8b;
}

/* Dashboard Section */
.tracking-section a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #ffffff;
}

.tracking-section a:hover {
    color: #e0e0e0;
}

/* Table Styles */
.table {
    width: 90%;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.table thead {
    background: #6a5acd;
    color: white;
}

.table th, .table td {
    padding: 15px;
    text-align: left;
}

.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .tracking-section {
        width: 95%;
    }
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #6a5acd !important;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); */
}

.navbar-nav {
    display: flex;
    gap: 20px; /* Adjust spacing between items */
    list-style: none;
    margin-left: auto; /* Pushes items to the right */
}
/* 
.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff !important;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 10px;
}

.navbar-nav .nav-link:hover {
    color: #6a5acd !important;
}

.navbar-toggler {
    border: none;
    outline: none;
} */

.navbar-toggler-icon {
    background-color: transparent;
}