body, html {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #001F3D;
}

body {
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

nav {
    font-weight: 600;
    font-size: 15px;
    background-color: #003b6e !important;
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
}

.nav-link,
.nav-link:focus,
.nav-link:hover {
    color: white;
}

.nav-link .iceberg-icon {
    background-color: white;
}

.nav-link.active,
.nav-link:hover,
.nav-link[data-bs-toggle="dropdown"].show,
.nav-link.dropdown-toggle.show {
    background-color: #001F3D;
}

.navbar-brand {
    margin-right: 0;
}

.navbar-toggler {
    border: none;
}

@media only screen and (min-width: 960px) {
    .navbar {
        padding: 0;
    }

    .nav-link {
        padding: 1em 0.7em;
        max-height: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .dropdown-toggle::after {
        float: right;
    }
}

.icon-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.icon-title {
    font-size: 0.8rem;
}

.icon-card {
    --card-size: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #F7FAFC;
    height: var(--card-size);
    width: var(--card-size);
    margin: 1rem;
    border-radius: 8px;
    padding: 0.5rem;
    box-sizing: border-box;
    overflow: visible;
}

.icon-card:hover {
    border: 1px solid #DCDCDC;
}

.icon-card > svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    color: #68778D;
    flex-shrink: 0;
}

/* Download button */
.download-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn svg {
    width: 16px;
    height: 16px;
    color: #68778D;
}

.icon-card:hover .download-btn {
    opacity: 1;
}

.download-btn:hover {
    background-color: rgba(0, 59, 110, 0.1);
}

.download-btn:hover svg {
    color: #003b6e;
}

/* App icons section */
.app-icon-card {
    --card-size: 180px;
    padding: 1rem;
}

.app-icon-card svg {
    max-width: 80px;
    max-height: 80px;
}

/* Big icons section */
.big-icon-card {
    --card-size: 300px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.big-icon-card svg {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
}

/* App icons grouped subsection */
.app-icons-group {
    margin-top: 2rem;
}

.app-icons-group h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #001F3D;
}