html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

body {
    color: #000;
    overflow-x: hidden;
    height: 100%;
    background-color: #ffffff;
    background-repeat: no-repeat;
}

a {
    text-decoration: none; /* Removes underline for all links */
}

a:hover {
    text-decoration: none; /* Ensures no underline on hover */
}


.btn:focus,
.btn:active,
.btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Loading Indicator Styles */
#loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Hide main content initially */
#main-content {
    display: none;
}

.logo-section {
    margin-top: 3%;
    height: px;  /* Adjust the height as needed */
    width: auto; 
}

footer {
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    position: relative;
    bottom: 0;
    left: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}


.footer-content h3 {
    margin: 0;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.footer-links li {
    display: inline-block;
    margin: 0 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
.social-media {
    margin-top: 20px;
    gap: 10px;
    position: absolute;
    right: 100px;
    top: 75px;
    display: flex;
    align-self: flex-end;
}


.social-media a {
    display: inline-block;
    margin: 0 5px;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #007bff; /* Adjust hover color as needed */
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    
}

.footer-bottom p {
    margin: 0;
}
/* Add styles for buttons and links */
a {
    color: green;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #2e59d9;
}

button {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

button:hover {
    background-color: #2e59d9;
    transform: translateY(-2px);
}

/* Responsive adjustments for .container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Custom CSS for Small Tracking Form */
.tracking-input:focus {
    box-shadow: none;
    border-color: #000000fb;
}

.input-group-text {
    border-radius: 0.25rem;
}

.tracking-input {
    border-radius: 0.25rem;
}

.tracking-button {
    border-radius: 0.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tracking-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

#tracking-icon .fas {
    margin-top: -2px;
}
.tracking-input {
    background-color: #f8f9fa;
}

.tracking-input::placeholder {
    color: #7d6c6c;
}

.logout-btn {
    color: #a59f9f !important; /* Override default link color */
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
    display: inline-block;
    font-size: 0.85rem; /* Adjust text size here */
  }
  
.logout-btn:hover {
    color: #ff5733 !important;
    text-decoration: none;
}

  
/* Responsive adjustments (if needed) */
@media (max-width: 576px) {
    .tracking-button {
        margin-top: 5px;
        width: 100%;
    }
}

/* Small devices (landscape phones, 576px and up) */
/* @media (min-width: 576px) {
    .container {
        width: 80%;
    }
} */

/* Medium devices (tablets, 768px and up) */
/* @media (min-width: 768px) {
    .container {
        width: 75%;
    }
} */

/* Large devices (desktops, 992px and up) */
/* @media (min-width: 992px) {
    .container {
        width: 70%;
    }
} */

/* Extra large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) {
    .container {
        width: 65%;
    }
} */

/* Example adjustments for a .card in different screen sizes */
@media (max-width: 768px) {
    .card {
        padding: 10px;
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .card {
        padding: 15px;
        font-size: 16px;
    }
}

@media (min-width: 1201px) {
    .card {
        padding: 20px;
        font-size: 18px;
    }
}


@media (max-width: 767px) {
    .courier-progressbar{
       display: block;
    }
    #courier-progressbar li{
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
    #courier-progressbar li img.icon{
        margin: 0;
        display: inline-block;
        margin-right: 10px;
    }
}

