﻿@import "InfoPages.css";
@import "LayoutImages.css";
@import "TelerikAddon.css";
@import "DataMasks.css";
@import "fontawesome6/css/all.min.css";

html
{
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

body
{
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    border: 0px transparent;
    font: 12px "Segoe UI", Arial, Verdana;
}

#divMenu {
    position: absolute;
    width: 100%;
    height: 25px;
    top: 0;
    left: 0;
    z-index: 3;
    margin: 0;
}

#divTopToolbar
{
    display: block;
    overflow: hidden;
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
    margin: 0;
}


#divMainContent
{
    overflow: hidden;
    position: absolute;
    top: 60px;
    bottom: 0px;
    left: 0px;
    right: 0;
    z-index: 1;
}

#divMainContent.largeMenu {
    top: 71px;
}

.scrollable
{
    overflow: auto !important;
}

#divMainContent.noToolbar {
    top: 25px;
}

#divFooter
{
    display: none;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    z-index: 2;
    margin: 0;
}

.FooterLogo a:hover
{
    color: #aaa !important;
}

a {
    color: #FF5F15;
}

hr{
    border-color: #666;
}

/* Container for the grid */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 540px));
    gap: 35px;
}

/* Individual grid items */
.grid-item {
    padding: 0px;
}

/* skins */

#divMainContent.Material-skin {
    top: 90px;
}

#divTopToolbar.Material-skin {
    height: 40px;
    top: 50px;
}

#divMainContent.MetroTouch-skin {
    top: 75px;
}

#divTopToolbar.MetroTouch-skin {
    height: 40px;
    top: 35px;
}

#divMainContent.Metro-skin {
    top: 70px;
}

#divTopToolbar.Metro-skin {
    height: 40px;
    top: 35px;
}

#divMainContent.BlackMetroTouch-skin {
    top: 60px;
}

#divTopToolbar.BlackMetroTouch-skin {
    height: 50px;
    top: 25px;
}

#divMainContent.Bootstrap-skin {
    top: 90px;
}

#divTopToolbar.Bootstrap-skin {
    height: 50px;
    top: 45px;
}

#divMainContent.Glow-skin {
    top: 60px;
}

#divTopToolbar.Glow-skin {
    height: 40px;
    top: 25px;
}

#divMainContent.Silk-skin {
    top: 60px;
}

#divTopToolbar.Silk-skin {
    height: 40px;
    top: 25px;
}

#divMainContent.Default-skin {
    top: 60px;
}

#divTopToolbar.Default-skin {
    height: 40px;
    top: 25px;
}


#divTopToolbar.largeMenu {
    height: 36px;
    top: 25px;
}

.TabPage {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    max-width: 1280px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.col {
    padding: 0.5rem;
    box-sizing: border-box;
    text-align: left;
}

.col-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
}

.col-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 1279px) {
    .col-2, .col-3, .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 640px) {
    .col-2, .col-3, .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.tile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tile {
    flex: 1 1 calc(33.333% - 1rem);
    background: #111;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s;
}

    .tile:hover {
        background: #3e3e3e;
    }

.tile-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tile-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.tile-description {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .tile {
        flex: 1 1 100%;
    }
}

