/* Import Roboto font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


/* Base font styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5 {
    font-weight: 700;
}

h1 {
    font-size: 44px;
    line-height: 56px;
}

h2 {
    font-size: 30px;
    line-height: 40px;
}

h3 {
    font-size: 22px;
    line-height: 32px;
}

h4 {
    font-size: 19px;
    line-height: 32px;
}

h5 {
    font-size: 16px;
    line-height: 24px;
}

/* Paragraphs */
p {
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
}

.lead-paragraph {
    font-size: 24px;
    line-height: 40px;
    font-weight: 300;
}

.small-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

/* Links */
a {
    color: var(--link-color);
}

a:hover {
    color: var(--link-hover-color);
    background-color: var(--link-hover-background);
}

/* Form elements */
input:focus, select:focus, textarea:focus {
    border-color: var(--focus-color);
    background-color: var(--focus-background);
}

/* Buttons */
button {
    background-color: var(--brand-color);
    color: var(--primary-background);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: var(--secondary-brand-color);
}

/* Borders */
.border {
    border-color: var(--border-color);
}

.border-strong {
    border-color: var(--dark-border-color);
}

.border-faint {
    border-color: var(--light-border-color);
}

.border-highlight {
    border-color: var(--highlighted-border-color);
}

/* Backgrounds */
.bg-primary {
    background-color: var(--primary-background);
}

.bg-secondary {
    background-color: var(--secondary-background);
}

.bg-tertiary {
    background-color: var(--tertiary-background);
}

/* Text colors */
.text-positive {
    color: var(--positive-color);
}

.text-negative {
    color: var(--negative-color);
}

/* Form container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form header */
.form-header {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #005ea5; /* Primary color */
}

/* Form steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Form labels */
label {
    display: contents;
    margin-bottom: 8px;
    font-weight: 400; /* This sets the font weight to normal */
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Navigation buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
}

.nav-buttons button {
    width: 48%;
}

/* Progress bar */
.progress-bar {
    height: 20px;
    background-color: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar-inner {
    height: 100%;
    width: 0;
    background-color: #005ea5; /* Primary color */
    transition: width 0.3s;
}

/* Main colors */
:root {
    --brand-color: #0065bd;
    --secondary-brand-color: #002d54;
    --text-color: #333333;
    --link-color: #0065bd;
    --link-hover-color: #a2b3c2 !important;
    --link-hover-background: #d9effc;
    --background-color: #ffffff;
    --border-color: #b3b3b3;
}

/* Navbar styles */
.navbar {
    color: #ffffff !important; /* White text color */
    padding: 20px 0 !important;
    text-align: center !important;
    position: relative !important;
}

.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.navbar .navbar-brand {
    display: flex !important;
    align-items: center !important;
}

.navbar .navbar-brand img {
    height: 32px !important;
    margin-right: 10px !important;
}

.navbar .navbar-brand h1 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #ffffff !important;
}

.navbar .nav-link {
    color: #000000 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.navbar .nav-link:hover {
    text-decoration: underline !important;
}

.navbar .dropdown-menu {
    background-color: #c2c2c2 !important;
    border-color: #c2c2c2 !important;
}

.navbar .dropdown-item {
    color: #000000 !important;
}

.navbar .dropdown-item:hover {
    color: #000000 !important;
    background-color: #c2c2c2 !important; /* Yellow background for hover */
}

.navbar .divider-vertical {
    border-left: 1px solid #ffffff !important;
    height: 24px !important;
    margin: 0 10px !important;
}

.skip-to-content a {
    color: #ffffff !important;
    background-color: #00437e !important;
    padding: 8px !important;
    text-decoration: none !important;
}

.skip-to-content a:hover {
    background-color: #fdd522 !important;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.button-primary {
    background-color: #0065bd;
    color: #ffffff;
    border: 2px solid #0065bd;
}

.button-primary:hover {
    background-color: #00437e;
    border-color: #00437e;
}

.button-secondary {
    background-color: #ffffff;
    color: #0065bd;
    border: 2px solid #0065bd;
}

.button-secondary:hover {
    background-color: #d9effc;
    border-color: #00437e;
}

.button-cancel {
    background-color: #ffffff;
    color: #d32205;
    border: 2px solid #d32205;
}

.button-cancel:hover {
    background-color: #fdd522;
    border-color: #d32205;
}

.button-disabled {
    background-color: #ebebeb;
    color: #727272;
    border: 2px solid #b3b3b3;
    cursor: not-allowed;
}

.button-link {
    background-color: transparent;
    color: #0065bd;
    border: none;
    text-decoration: underline;
}

.button-link:hover {
    color: #00437e;
    background-color: transparent;
}

.nav-item:hover, .nav-item:hover .nav-link {
    background-color: 	#ebebeb !important; /* Apply yellow to both the item and its link */
}

    
.entity-action-button {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.entity-action-edit {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
}

.entity-action-edit:hover {
    background-color: #3e8e41;
}

.entity-action-delete {
    background-color: #f44336; /* Red */
    color: white;
    border: none;
}

.entity-action-delete:hover {
    background-color: #da190b;
}

/* Adjust button size */
.entity-action-button{
  font-size: 16px;
}




.entity-grid thead th  {
    
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none; /* Remove underline */
}

.entity-grid thead th a {
    
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none; /* Remove underline */
}

/* Remove border, padding, and margin from the QuickviewControl */
#QuickviewControl1742288201207 {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block; /* Ensure block-level display */
    width: 100%; /* Ensure full container width */
}


/* Remove bottom margin and padding from the last table row */
#QuickviewControl1742288201207 .section tr:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Align labels and inputs on the same line within table cells */
#QuickviewControl1742288201207 .section td {
    padding: 0 !important;
    vertical-align: middle;
    display: flex;
    align-items: center;
    margin: 0;
}

/* Style for labels */
#QuickviewControl1742288201207 .field-label {
    margin-right: 10px; /* Space between label and input */
    white-space: nowrap; /* Prevent text wrapping */
    flex-shrink: 0; /* Prevent label from shrinking */
    line-height: 1; /* Adjust as needed */
    margin: 0;
}

/* Style for input fields */
#QuickviewControl1742288201207 .control input {
    flex-grow: 1; /* Allow input to take remaining space */
    margin-left: 10px; /* Space between label and input */
    width: auto; /* Ensure input width adjusts based on content */
    line-height: 1; /* Match line height with label */
    margin: 0;
}

/* Style for status text */
#QuickviewControl1742288201207 .status {
    font-weight: normal;
   /* color: #0078d4;  Change color as needed */
    margin-left: 10px; /* Space between label and status */
    line-height: 1; /* Match line height with label */
    margin: 0;
}

/* Optional: Hide the validation summary box */
#QuickviewControl1742288201207 #ValidationSummaryQuickviewControl1742288201207 {
    display: none !important;
}

.crmEntityFormView .cell {
  
    font-size: 19px;
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

td[data-attribute="emailaddress1"] a {
    font-size: 19px !important;
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

td[data-attribute="leidos_associateduniqueemailmailbox"] a {
    font-size: 19px !important;
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

tbody {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    font-size: 19px !important;
}



/* a, .a {
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-size: 19px !important;
} */


  









 





