/* NEW LANDING PAGE */
.gsi-material-button {
    z-index: 2147483647 !important; /* Google's default maximum z-index */
}

body > div[style*='position: fixed'] {
    z-index: 2147483647 !important;
}

.swipe-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(225deg, #f8f7f7, #e2dddd);
    padding: 40px 0;
}

.dark-mode .swipe-home {
    background: linear-gradient(225deg, #2f2020, #222221);
}

.swipe-home h2 {
    font-size: 2.5em;
    text-align: center;
    width: 80%;
    color: black;
}

.dark-mode .swipe-home h2 {
    color: white;
}

.swipe-home-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--main--red);
    width: 80%;
    max-width: 600px;
    gap: 10px;
    max-height: 100px;
    height: 100%;
    box-sizing: border-box;
}

.swipe-home-card img {
    max-height: 80px;
    max-width: 80px;
    height: auto;
    width: auto;
    padding: 10px;
    box-sizing: border-box;
    object-fit: contain;
}

.swipe-home-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.swipe-home-card-text h3 {
    margin-top: 10px;
    color: black;
    font-size: 1.5em;
}

.swipe-home-card-text p {
    color: black;
    font-size: 0.8em;
    margin-bottom: 10px;
    margin-right: 10px;
}

.hiring-home {
    text-align: center;
    margin: 40px 0;
}

.hiring-home a {
    background: var(--main--red);
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    border: none;
    margin: 20px 0 0 0;
    width: 90%;
    min-width: fit-content;
}

.hiring-home a:hover {
    background: var(--dark--red);
}

.dark-mode .swipe-home-card-text h3,
.dark-mode .swipe-home-card-text p {
    color: white;
}

/* END NEW LANDING PAGE */
