/* ============================================
   ADP TotalSource Skin - Base Styles
   DNN 10.3.2 Compatible
   
   CSS Load Order (via DnnCssInclude):
     0. webfonts.css  - @font-face declarations
     1. skin.css      - Reset, typography, modern utilities
     2. layout.css    - Page structure & legacy layout
     3. menu.css      - Navigation menus
     4. responsive.css - Media queries
     5. styles.css    - Legacy utility classes
   ============================================ */

/* CSS Reset & Base */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    min-height: 100%;
}

body {
    top: 0;
    margin: 0;
    height: auto;
    width: auto;
    font-family: Arial, sans-serif;
    background-color: #d9d7d7;
    color: #2c2c2c;
    transition: all 0.2s linear;
}

/* Typography */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'AmasisMTRegular', Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin: 0 0 0.5em 0;
    line-height: 1.2;
}

h1, .h1 { font-size: 2.5rem; }
h2, .h2 { font-size: 2rem; }
h3, .h3 { font-size: 1.75rem; }
h4, .h4 { font-size: 1.5rem; }
h5, .h5 { font-size: 1.25rem; }
h6, .h6 { font-size: 1rem; }

h1.bold, h1 span, h1 strong, 
.h1.bold, .h1 span, .h1 strong, 
h2.bold, h2 span, h2 strong, 
.h2.bold, .h2 span, .h2 strong {
    font-weight: bold;
}

p {
    font-family: "dinotregular", Arial, Helvetica, sans-serif;
    margin: 0 0 1em 0;
}

td, p, div {
    font-size: 12px;
    line-height: 18px;
    color: #2c2c2c;
}

/* Links */
a, a:link, a:visited, a:active {
    color: #d0271d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ol, ul {
    margin: 1em 0;
    padding-left: 2em;
}

ul li {
    margin: 0 0 0 0;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.clear {
    clear: both;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

.relative {
    position: relative;
}

.row {
    width: 100%;
}

.overflow {
    overflow: auto;
}

/* Background Colors */
.bg-white {
    background-color: #fff;
}

.bg-dark-grey {
    background-color: #2f2f2f;
}

.bg-middle-grey {
    background-color: #ededed;
}

.bg-light-gray {
    background-color: #ececec;
}

/* Shadow Effects */
.bottom-shadow {
    box-shadow: 0 11px 21px 0 rgba(0, 0, 0, 0.15);
}

/* Gradients */
.gray-gradient {
    background: linear-gradient(to bottom, #efefef 0%, #d9d7d7 100%);
}

.gradient-menu-hover {
    background: linear-gradient(to bottom, #dfdfdf 0%, #f6f6f6 100%);
}

/* Container */
.container {
    position: relative;
    margin: 0 auto;
    max-width: 1243px;
    min-width: 0;
    padding: 0 4%;
}

/* Command Content Pane */
.commandContentPane {
    display: none;
}

/* Display for authenticated users */
.display-authed-only {
    display: none;
}
