html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    flex-shrink: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00561B;
    color: #FFFFFF;
    padding: 20px;
}

.triggers_logo {
    width: 200px;
    height: 50px;
}

.div-auth {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.select {
    padding: 10px 20px;
    border: 1px solid #00561B;
    border-radius: 5px;
}

.button {
    margin-right: 20px;
    background-color: #00561B;
    color: #FFFFFF;
    padding: 10px 20px;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #F2F2F2;
    color: #00561B;
}

.content {
    display: flex;
    justify-content: center;
    height: 100%;
}

.triggersPres{
    position: relative;
    color: white;
    text-align: center;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.text-overlay {
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

p {
    font-size: 1.25em;
    margin: 0.5em 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    box-sizing: border-box;
    padding: 30px;
}

:root {
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-color: white;
    --swiper-pagination-bullet-inactive-color: #000;
    --swiper-pagination-bullet-inactive-opacity: 0.7;
}

.footer-link {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.footer-link:hover {
    background-color: #e2e6ea;
    color: #00561B;
}

.img-fullscreen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.appGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.appButton {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    background-color: #f0f0f0;
    font-size: 12px;
    color: #000;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.appButton img {
    width: 65%;
    margin-bottom: 5px;
}

.appButton:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.admButton {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    background-color: #f0f0f0;
    font-size: 12px;
    color: #ff6600;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.admButton img {
    width: 65%;
    margin-bottom: 5px;
}

.admButton:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.img-view {
    width: 500px;
    padding-right: 50px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.number {
    margin-right: 20px;
    font-size: 24px;
}

.half-full{
    width:50%;
}

.half-half{
    display: flex;
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 18px;
        min-height: 80vh;
    }

    header, footer, .footer {
        height: 35px;
        padding: 10px;
    }

    h2{
        font-size: 18px;
    }

    .swiper-slide {
        font-size: 12px;
        padding: 0;
    }

    .triggers_logo {
        width: 136px;
        height: 32px;
    }

    .select {
        padding: 5px 10px;
    }

    .button {
        padding: 5px 10px;
    }

    .appButton {
        width: 90px;
        height: 90px;
    }

    .admButton {
        width: 90px;
        height: 90px;
    }

    .hidden-mobile {
        display: none;
    }

    .list-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .number {
        margin-right: 10px;
        font-size: 16px;
    }

    .half-full{
        width:100%;
    }

    .img-view {
        width: 300px;
        padding-right: 0;
    }
}

@media screen and (min-width: 300px) {
    .appGrid {
        gap: 10px;
        padding: 5px;
    }

    .footer-link, .select, .button, p {
        font-size: small;
        padding: 5px 10px;
    }
}

@media screen and (min-width: 380px) {
    .appGrid {
        gap: 20px;
        padding: 10px;
    }

    .footer-link, .select, .button, p {
        font-size: medium;
        padding: 10px 20px;
    }
}

@media screen and (min-width: 768px) {
    .appGrid {
        gap: 40px;
        padding: 20px;
    }
}