.Header__header {
    background-image: linear-gradient(180deg, #9DCA00 0%, #3E6305 100%);
}

.commonStyle__zt3breadCrumbBg {
    /* background: #9dca00; */
    background-image: linear-gradient(180deg, #9DCA00 0%, #3E6305 100%);
}
.commonStyle__zt3breadCrumbText {
    color: #ffffff;
}


.BreadCrumbs__breadcrumbsView ul li:last-child {
    color: #ffffff;
}


    
  
.Input__inputCommon {
    width: 100%;
    padding: 12px 15px;
    
    font-size: 16px;
    border-radius: 5px;
    background-color: #ffffff; /* White background for the input */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Beautiful shadow effect */
    transition: box-shadow 0.3s ease;
}

.UserContainer__logInMainContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-image: linear-gradient(180deg, #9DCA00 0%, #3E6305 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 50px auto;
  
}

.UserContainer__innerContainer1,
.UserContainer__innerContainer2 {
    width: 48%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
  height: auto;
  
}

.Signin__loginHead {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.Signin__loginTitle {
    font-size: 24px;
    font-weight: bold;
}

.Signin__loginSubTitle {
    font-size: 18px;
    cursor: pointer;
    text-decoration: underline;
    color: #3E6305;
}

#iamFrame {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    border: none; /* Ensures no border for iframe */
}

.Signin__loginButton {
    display: block;
    width: fit-content;
    margin: 20px auto; /* Centering the button */
    padding: 10px 20px;
    border-radius: 5px;
    background-image: linear-gradient(180deg, #9DCA00, #3E6305); /* Button gradient */
    color: #ffffff; /* Button text color */
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.Signin__loginButton:hover {
    background-image: linear-gradient(180deg, #8CBF00, #365704); /* Darker gradient on hover */
}

.Signin__loginHalf {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    border-radius: 8px;
  background: #fff;
}

.Signin__loginUserIcon {
    margin-right: 15px;
}

.Icon__icon {
    
    fill: #9DCA00; /* Icon color */
}

.Signin__userHeader {
    font-size: 16px;
    font-weight: bold;
}

.Signin__userLink {
    color: #3E6305;
    text-decoration: none;
}

.Signin__userLink:hover {
    text-decoration: underline;
}

.Signin__userDesc {
    font-size: 14px;
    color: #333;
}

.commonStyle__tableMiddle {
    display: table-cell;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    .UserContainer__innerContainer1,
    .UserContainer__innerContainer2 {
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box; /* Ensure padding doesn't affect width */
    }

    .Signin__loginHalf {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .Signin__loginUserIcon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
.Footer__footerBg {
     /* Dark background for contrast */
    padding: 20px;
    width: 100%;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.Footer__container1 {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
    color: #fff; /* White text for contrast */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out elements in a row */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.Footer__footerContent {
    flex-grow: 1; /* Allow content to grow and fill space */
    text-align: left;
    padding-right: 20px; /* Space between text and button */
}

.Footer__footerQus {
    font-size: 24px;
    font-weight: bold;
}

.Footer__footerDescription {
    font-size: 18px;
}

.Footer__footerBtn {
    flex-shrink: 0; /* Prevent shrinking of button */
}

.Button__btnFont {
    padding: 15px 30px;
    border-radius: 8px;
    background-image: linear-gradient(180deg, #9DCA00, #3E6305); /* Button gradient */
    color: #ffffff; /* Button text color */
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, background-image 0.3s ease;
}

.Button__btnFont:hover {
    background-image: linear-gradient(180deg, #8CBF00, #365704); /* Darker gradient on hover */
    transform: translateY(-2px); /* Lift effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .Footer__container1 {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        text-align: center; /* Center-align text on smaller screens */
    }

    .Footer__footerContent {
        padding-right: 0; /* Remove padding on smaller screens */
        margin-bottom: 15px; /* Space between text and button */
    }

    .Button__btnFont {
        font-size: 16px; /* Adjust font size for smaller screens */
        padding: 12px 20px; /* Adjust padding for smaller screens */
    }
}

.btn.primary {
    display: inline-block;
    padding: 15px 30px; /* Increased padding for a larger button */
    font-size: 18px; /* Larger font size */
    font-weight: bold;
    color: #ffffff; /* White text color */
    text-align: center;
    text-decoration: none;
    border-radius: 8px; /* Rounded corners */
    background-image: linear-gradient(180deg, #9DCA00, #3E6305); /* Gradient background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary:hover {
    background-image: linear-gradient(180deg, #8CBF00, #365704); /* Darker gradient on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Enhanced shadow on hover */
    transform: translateY(-2px); /* Lift effect on hover */
}

.btn.primary:active {
    transform: translateY(1px); /* Slight push effect on click */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* Reduced shadow on click */
}

.TicketListItem__listItem {
    
    border-bottom: 1px solid var(--color-border2);
    ; */
    padding: 20px;
    border-radius: 10px;

    background: #f9fff8;
    margin-top: 10px;
    /
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
