html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.no-shadow {
    box-shadow: 0px 0px 0px 0px rgba(57, 62, 70, 0.3) !important;
}

.app-image {
    /* width:120px;*/
    height: 30px;
}

.app-image-body {
    height: 40px;
}

.app-image-body-lg {
    height: 60px;
}

.app-name {
    color: #333;
    text-transform: uppercase;
    font-size: 14px !important;
    font-weight: bold;
    font-family: "roboto", sans-serif;
    letter-spacing: 0.1rem;
    line-height: 1;
}

.app-name-md {
    color: #333;
    text-transform: uppercase;
    font-size: 1.25rem !important;
    font-weight: bold;
    font-family: "roboto", sans-serif;
    letter-spacing: 0.05rem;
    line-height: 1;
}

.app-name-lg {
    color: #333;
    text-transform: uppercase;
    font-size: 1.7rem !important;
    font-weight: bold;
    font-family: "roboto", sans-serif;
    letter-spacing: 0.05rem;
    line-height: 1;
}


/*#region ----------Navbar--------------- */

.navbar {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    /*background-color: #008265;*/
    padding: .2rem 1rem !important;
}

.nav-title {
    text-transform: uppercase;
}

.nav-link {
    /*color: whitesmoke;*/
    border-radius: 0px !important;
    /*background: none !important;*/
    color: dimgray !important;
    font-weight: 600;
}

    .nav-link.active {
        /*background: white !important;*/
        color: #008265 !important;
    }

nav-link:hover {
    color: var(--bs-nav-link-hover-color);
}

.navbar-nav .nav-link {
    padding: 3px 5px;
    font-size: 14px !important;
}

.navbar-nav {
    color: black !important;
}

.nav {
    flex-wrap: nowrap;
}

.nav-tabs {
    background-color: #f4f4f4;
    padding: 5px 1.5rem !important;
    font-size: 14px !important;
}

/*#endregion -------Navbar--------------- */
/*#region ----------Tile & Folder--------------- */
.tile-container {
    display: flex;
    gap: 30px;
}

.tile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 8px;
}

.tile-text {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    font-weight: bold;
}

.folder-tile {
    width: 170px;
    height: 150px;
    background-color: white;
    border: 2px solid #deb887;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

    .folder-tile:hover {
        transform: scale(1.05);
        border: 2px solid #008265;
    }

.folder-icon {
    font-size: 50px;
}

.folder-label {
    margin-top: 10px;
    font-size: 14px;
    /*font-weight: bold;*/
    color: #333;
}

.btn-tile {
    width: 100px;
    height: 100px;
    background-color: #008265;
    border: 1.5px solid #008265;
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-tile-round {
    border-radius: 50%;
}

.btn-tile:hover {
    transform: scale(1.05);
}

.btn-tile-icon {
    font-size: 30px;
}

.btn-tile-label {
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

/*#endregion ----------Tile & Folder--------------- */
