* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #e3e3e0;
}
footer {
    /* background: linear-gradient(45deg, #163564, #5aa3f7);
    background-size: 400% 400%; */
    background: linear-gradient(90deg, #2910E8, #8A7BF7);
    background-size: 100% 100%;
    color: #FCFCFC;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
}
.footer-container p {
    margin: 10px;
    padding: 0;
}

.footer-container a {
    color: #fcfcfc;
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline;
}

.footer-container {
    display: inline-block
}

.footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: #fcfcfc;
}

label.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}
  
input[type="date"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}
  
input[type="date"]:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

input[type="number"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}
  
input[type="number"]:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

input[type="file"] {
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

input[type="file"]::file-selector-button {
    border-right: 1px solid #ced4da;
    border-top: 0px;
    border-bottom: 0px;
    border-left: 0px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 1rem;
    margin-right: 15px;
    padding: 60px 8px;
}

input[type="file"]::file-selector-button:hover {
    background-color: #f8f8f8;
}

input[type="file"]::file-selector-button:active {
    background-color: #ced4da;
}
  
input[type="file"]:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

input[type="time"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}
  
input[type="time"]:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.image-container {
    margin: 20px;
    border: 1px solid #aaa;
    border-radius: 5px;
    padding-top: 30px;
}

.image-container h3 {
    margin-left: 20px;
}

.image-container h4 {
    margin-left: 20px;
}

.category-image {
    max-width: 100%;
    height: auto;
}

.incident-photo {
    max-width: 40vw;
    height: auto;
}

  .aside-group {
  display: flex;
  align-items: stretch;
}

.btn-aside {
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 0.75rem;
    margin-bottom: .5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0 0.25rem 0.25rem 0;
    border-width: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-color: #f1f1f1;
    color: #000;
    text-decoration-line: none;
    display: inline-block;
    gap: 5px;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    min-width: 120px;
}

.input-aside {
  border-right: 0 !important;
  border-radius: 0.25rem 0 0 0.25rem !important;
}

.input-aside:focus {
    border-color: #ced4da !important;
    outline: none !important;
}

.checkbox-aside {
    display: flex;
    gap: 10px;
}

.text-area {
    resize: vertical;
    min-height: 100px;

}
header {    
    display: flex;    
    justify-content: space-between;    
    align-items: center;    
    padding: 10px 10px;    
    background: #fcfcfc;    
    height: 40px;    
    position: sticky;    
    z-index: 999;    
    box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5); 
}  

.header {
    display: flex;
    flex-direction: row;
    background:#fcfcfc;
}

.nav-links {    
    list-style: none;
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background-color: #fcfcfc;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10; 
}

.nav-links li {    
    display: block;    
}

.nav-links li a {    
    transition: all 0.3s ease 0s;    
    padding: 5px 15px;    
    color: #000;    
    text-decoration: none; 
} 

.nav-links li a:hover {    
    background-color: #f8f8f8;    
    border-radius: 100px; 
}

.nav-image {    
    margin-left: 0px;    
    display: flex;    
    margin-right: 70px; 
}

.nav-image a {    
    color: #000;    
    text-decoration: none;    
    font-weight: 600;    
    font-size: 24px;    
    padding: 6px 20px; 
}

.nav-image a:hover {    
    background-color: #f8f8f8;
}

.nav-settings {    
    margin-left: auto;    
    margin-right: 10px;    
    position: relative;    
    display: inline-block; 
}

.login-settings {    
    margin-left: auto;    
    margin-right: 10px;    
    position: relative;    
    display: flex; 
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

@media (max-width: 768px) {    
    .login-settings {        
        display: none !important;
    } 
}

@media (min-width: 768px) {    
    .mobile_login {        
        display: none !important;
    } 
}

.login-settings_link {  
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease 0s;    
    padding: 5px 15px;   
}

.login-settings_link:hover {
    background-color: #f8f8f8;
    border-radius: 100px; 
}

.nav-settings_drop {    
    font-size: 16px;    
    border: none;    
    padding: 10px 15px;    
    border-radius: 100px; 
    background-color: #fcfcfc;
}

.nav-settings_content {    
    display: none;    
    position: absolute;    
    background-color: #fcfcfc;    
    min-width: 120px;    
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);    
    z-index: 1;    
    right: 0; 
}

.nav-settings_content a {    
    color: black;    
    padding: 12px 16px;    
    text-decoration: none;    
    display: block; 
}

.nav-settings_content a:hover {    
    background-color: #f8f8f8;
    border-radius: 100px; 
}

.nav-settings:hover .nav-settings_content {    
    display: block;    
}

.nav-settings:hover .nav-settings_drop {    
    background-color: #f8f8f8; 
}

.dropdown-btn {
    color: black;    
    padding: 12px 16px;    
    text-decoration: none;    
    display: block; 
    border: none;
    background-color: #fcfcfc;
    font-size: 16px;
    min-width: 120px;
    text-align: left;
}

.dropdown-btn:hover {
    background-color: #f8f8f8;
    border-radius: 100px; 
}

.dropdown-btn:disabled {
    color: grey;
    cursor: not-allowed;
}

.signout-btn {
    color: black;    
    padding: 12px 16px;    
    text-decoration: none;    
    display: block; 
    background-color: #fcfcfc;    
    min-width: 120px;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 400;    
}

.signout-btn:hover {
    background-color: #f8f8f8;
    border-radius: 100px; 
}

.nav-toggle {    
    display: block;    
    cursor: pointer;    
    font-size: 32px;    
    border: 0px;
    padding: 0px 15px 0 15px;
    position: relative;
    background-color: #fcfcfc;
    margin-left: auto;
}

@media (min-width: 768px) {    
    .nav-links {        
        display: flex !important;
        flex-direction: row !important;
        position: static;
        box-shadow: none;
    }    

    .nav-toggle {        
        display: none;    
    }
}

@media (max-width: 768px) {    
    .nav-links li a {        
        padding: 10px 35px;
        display: block;
    }    
}

.nav-links.show-menu {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background-color: #fcfcfc;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.title {
    max-width: 700px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 500px) {
    .title {
        display: none;
    }
}
.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
}

.overflow {
    flex-wrap: wrap;
}

.row >*:first-child{
    flex:1;
}

.row >*:nth-child(2){
    flex:1;
}

.one-column {
    /*margin-top: 6px;*/
    margin-top: 0px;
    margin-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f5f5f5;
    /*border-radius: 6px;*/
    min-width: 300px;
    /*max-width: 800px; */
    /*width: 90%;*/
    width: 100%;
    display: flex;
    flex: auto;  
    flex-direction: column;
}

.risk-box {
    display: flex;
    flex-direction: row;
    background-color: #f5f5f5;
}

.risk-box-col1 {
    min-width: 280px;
    height: 100vh;
    background-color: #fcfcfc;
    border-right: 1px solid #e0e0e0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
.risk-box-col1_header {
    padding-top: 20px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 10px;
    color: #000;
    background-color: #fcfcfc;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.risk-box-col1_content {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 1 auto;
    overflow-y: auto;
  }
  
.risk-box-col1_content:hover {
    overflow-y: scroll;
}

.risk-box-col2 {
    min-width: 150px;
    min-height: 100vh;

    background-color: #f5f5f5;
    flex: 1;
    overflow: auto;
}

/* .risk-box-col2 img {
    display: block;
    margin: 40px auto;
} */

.page-title {
    /* background: linear-gradient(45deg, #163564, #5aa3f7); */
    background: linear-gradient(90deg, #2910E8, #8A7BF7);
    /* background-size: 400% 400%; */
    background-size: 100% 100%;
    animation: gradientBG 5s ease infinite;
    color: #f1f1f1;
    padding: 40px 10px 10px 20px;
    /*padding: 60px 10px 5px 20px;*/
    /*border-radius: 6px 6px 0px 0px;*/
    display: flex;
    flex-direction: row;
}

.page-content {
    padding: 20px 15%;
}

.page-content img {
    display: block;
    margin: 0 auto;
}

/* 
####################################
        Body Text
####################################
*/

.link-dark {
    color: #000;
    text-decoration-line: underline;
    text-decoration-color: rgba(0, 0, 0, 0.178);
}

.link-dark:hover {
    color: #004080;
}

.title-buttons {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    gap: 4px;
}


.image-container {
    margin: 20px;
    border: 1px solid #aaa;
    border-radius: 5px;
    padding-top: 30px;
}

.image-container h3 {
    margin-left: 20px;
}

.image-container h4 {
    margin-left: 20px;
}

.category-image {
    max-width: 100%;
    height: auto;
}

.incident-photo {
    max-width: 40vw;
    height: auto;
}
.btn {
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-decoration-line: none;
    margin: 10px 0px;
    display: inline-block;
    gap: 5px;
}

.btn-primary {    
    border-width: 0;
    background-color: #2910E8;
    color: #fcfcfc;
}

.btn-secondary {
    border: solid 1px #ccc;
    background-color: #f5f5f5;
    color: #000;
}

.btn-tertiary {    
    border-width: 0;
    background-color: #2b2c2a;
    color: #ebebeb;
}

#bulk-delete-form input[type="submit"]:disabled {
  visibility: hidden; /* hidden but still occupies space */
}

.btn-delete {
    background: #fcfcfc;
    color: #ce4141;
    border: solid 1px #ce4141;
}

.btn:hover {
    filter: brightness(85%)
}

.btn btn-primary:hover {
    filter: brightness(95%)
}

.btn-tertiary:hover {
    filter: brightness(70%)
}

.btn-delete:hover {
    background: #ce4141;
    color: #fcfcfc;
}

.btn:active {
    background-color: #0051b3;
}

.align_form {
    margin-bottom: 1.5rem;
}

.table_actions {
    display: flex;
    flex-direction: row;
}

.img-btn {
    background-color: #f1f1f1;
    border: none;
    padding: 5px 5px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    margin-right: 2px;
    border-color: #ced4da;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000;
    text-decoration-line: none;
    font-weight: 300;
    gap: 5px;
    line-height: 1.5;
}

.img-btn img {
    display: block;
    max-width: 20px;
}

.btn img {
    display: block;
    max-width: 20px;
}

.img-btn:hover {
    filter: brightness(85%);
}

.risk-img-btn {
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin-right: 2px;
    border-color: #ced4da;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000;
    text-decoration-line: none;
    font-weight: 300;
    gap: 5px;
    line-height: 1.5;
}

.risk-img-btn img {
    display: block;
    max-width: 20px;
}

.risk-img-btn:hover {
    filter: brightness(85%);
}

.caret-btn {
    border: none;
    cursor: pointer;
    width: 12px;
    height: 12px;
    margin-right: 2px;
    border-color: #ced4da;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000;
    text-decoration-line: none;
    font-weight: 300;
    gap: 5px;
    line-height: 1.5;
}

.caret-btn img {
    display: block;
    max-width: 12px;
}

.caret-btn:hover {
    filter: brightness(85%);
}

/* 
####################################
        Risk Buttons
####################################
*/

.risk-settings {    
    margin-left: auto;    
    margin-right: 10px;    
    position: relative;    
    display: inline-block; 
}

.bulk-category-dropdown {     
    position: relative;    
    display: inline-block; 
    margin-right: 10px;   
}

.risk-settings-drop {    
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    border-width: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-color: #e1e9f1;
    color: #06233d;
    text-decoration-line: none;
    margin: 10px 0px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.risk-settings-drop:hover {
    filter: brightness(85%);
}

.risk-settings-content {    
    display: none;    
    position: absolute;    
    background-color: #fcfcfc;    
    min-width: 120px;    
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);    
    z-index: 1;    
    right: 0; 
}

.risk-settings-content a {    
    color: black;    
    padding: 12px 16px;    
    text-decoration: none;    
    display: block; 
}

.risk-settings-content a:hover {    
    background-color: #f8f8f8;
    border-radius: 100px; 
}

.risk-settings:hover .risk-settings-content {    
    display: block;    
}

.bulk-category-dropdown:hover .risk-settings-content {    
    display: block;    
}

/* 
####################################
        Event Tabs
####################################
*/

/* Style the tabs */
.tab {
    padding-left: 5px;
    overflow: hidden;
    /* background: linear-gradient(45deg, #163564, #5aa3f7); */
    background: linear-gradient(90deg, #2910E8, #8A7BF7);
    /* background-size: 400% 400%; */
    background-size: 100% 100%;
    display: flex;
    flex-wrap: nowrap;          /* keep them all in one row */
    overflow-x: auto;           /* allow horizontal scroll if overflow */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    gap: 0.3rem;                /* space between buttons */
    scrollbar-width: thin;      /* nicer scrollbars (Firefox) */
}

.tablinks {
  white-space: nowrap;
  flex: 0 0 auto; /* don’t shrink too small, don’t wrap */
}
  
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    margin-right: 3px;
    transition: 0.3s;
    /* background-color: #0051b3; */
    background-color: #1905b5;
    border-radius: 6px 6px 0px 0px;
    color: #fcfcfc;
}

.tab button:hover {
    background-color: #007bff;
}
  
.tab button.active {
    background-color: #f5f5f5;
    color: #0051b3;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
}
  
.tabcontent img {
    display: block;
    margin: 40px auto;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
  
.modal-content {
  background-color: #fcfcfc;
  margin: 15% auto;
  width: 80%;
  max-width: 500px;
  height: 25%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.confirm-header {
  width: 100%;
  color: #000;
  background-color: #fcfcfc;
  padding: 20px;
  height: 80px;
}

.confirm-header h3 {
  margin-top: 15px;
}

.confirm-body {
  padding: 20px;
}

.btn-confirm {
  background-color: #cb3e3e;
  color: white;
}

.modal-actions {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-top: 10px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
  
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
  
.modal-actions {
  text-align: center;
}

.modal-actions button {
  margin: 5px;
  padding: 10px 20px;
}

#confirm-action {
  background-color: red;
  color: white;
}

#cancel-action {
  background-color: gray;
  color: white;
}
  
dialog {
  border: 0;
}

.modal {
  display: none;
  width: 40px;
  /* position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); */
}

.general_modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.general-modal-content {
  background-color: #fcfcfc;
  margin: 15% auto;
  width: 80%;
  max-width: 500px;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.general-modal-content-rules {
  background-color: #fcfcfc;
  margin: 15% auto;
  width: 80%;
  max-width: 1000px;
  height: 50%;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.close {
  color: #fcfcfc;
  float: right;
  font-size: 32px;
  font-weight: 100;
  padding: 4px;
  margin-right: 15px;
  margin-top: 8px;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
  color: #fcfcfc;
}

.modal-actions {
  text-align: center;
}

.modal-actions button {
  margin: 5px;
  padding: 10px 20px;
}

#confirm-action {
  background-color: #ce4141;
  color: #fff;
}

#cancel-action {
  background-color: ccc;
  color: #fff;
}

.notification-modal {
  position: sticky;
  top: 0;       /* adjust to match your navbar height */
  left: 0;
  width: 100%;
  z-index: 5; /* above content, below nav if needed */
  display: none; /* hidden by default */
}

.notification-modal-content {
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.modal-body {
  color: #fcfcfc
}
.pagination {
  padding: 10px;
  text-align: center;
}

.pagination a {
  color: #007bff;
  text-decoration: none;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  margin: 0 0.25rem;
}

.pagination a:hover {
  background-color: #e2e6ea;
  color: #0056b3;
}

.pagination a:active {
  background-color: #dae0e5;
  color: #004085;
}

.pagination a:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #20466c;
}

[role="link"][aria-disabled="true"]{
  display: none;
}

.pagination a + .current {
  color: #6c757d;
  pointer-events: none;
  display:inline-block;
}

.table {  
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-collapse: collapse;
    width: 95%;
}

.table-header {
    font-weight: 800;
    color: #007ff6;
    text-align: left;
    vertical-align: middle;
    background-color: #e3e3e0;
}

.table-header th {
    padding: 12px 15px;
    text-align: left;
}

.table-body tr {  
    border-bottom: 1px solid #ccc;
}

.risk_table-body tr {  
    border-bottom: 1px solid #ccc;
}

.mitigation_table-body tr {  
    border-bottom: 1px solid #ccc;
}

.table-body tr:nth-of-type(odd) {
    background-color: #f3f3f3;
}

.risk_table-body tr:nth-of-type(odd) {
    background-color: #f3f3f3;
}

.mitigation_table-body tr:nth-of-type(odd) {
    background-color: #f3f3f3;
}

.table-body tr:last-of-type {
    border-bottom: 2px solid #007ff6;
}

.risk_table-body tr:last-of-type {
    border-bottom: 2px solid #007ff6;
}

.mitigation_table-body tr:last-of-type {
    border-bottom: 2px solid #007ff6;
}

.table-body tr td {
    padding: 12px 15px;
    vertical-align: top;
}

.risk_table-body tr td {
    padding-left: 15px;
    padding-right: 15px;
    vertical-align: top;
}

.mitigation_table-body tr td {

    vertical-align: top;
}

.risk-row td {
    padding-top: 8px;
    padding-bottom: 8px;
    text-decoration-line: underline;
    text-decoration-color: rgba(0, 0, 0, 0.373);
}

.mitigation-row td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.table-body tr td a {
    color: #000;
    text-decoration-line: underline;
    text-decoration-color: rgba(0, 0, 0, 0.373);
}

.risk_table-body tr td a {
    color: #000;
}

.mitigation_table-body tr td a {
    color: #000;
}

.table-body tr td a:hover {
    color: #004080;
}

.risk_table-body tr td a:hover {
    color: #004080;
}

.mitigation_table-body tr td a:hover {
    color: #004080;
}
.event-info { 
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background-color:#f9f9f9;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.event-info h3 {
    color: #163564;
    text-align: center;
    margin-bottom: 20px;
}

.event-info p {
    font-size: 16px;
    line-height: 1.5;
    margin: 8px 0;
}

.event-info strong {
    color: #226BBF;
}

.event_box {
    border: 1px solid #000;
    border-radius: 3px;
    padding: 20px;
    margin-bottom: 20px;
}

.event_box_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.rules_item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background-color:#f9f9f9;
    margin: 20px auto;
    max-width: 70vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 750px) {
    .event_table td:nth-child(3),
    .event_table th:nth-child(3),
    .check_list_table td:nth-child(4),
    .check_list_table th:nth-child(4),
    .incident_report_table td:nth-child(3),
    .incident_report_table th:nth-child(3),
    .contacts_table td:nth-child(5),
    .contacts_table th:nth-child(5) {
        display: none;
    }
}

@media (max-width: 600px) {
    .event_table td:nth-child(2),
    .event_table th:nth-child(2),
    .check_list_table td:nth-child(3),
    .check_list_table th:nth-child(3),
    .incident_report_table td:nth-child(4),
    .incident_report_table th:nth-child(4),
    .contacts_table td:nth-child(1),
    .contacts_table th:nth-child(1) {
        display: none;
    }
}
@media (max-width: 500px) {
    .event_table td:nth-child(5),
    .event_table th:nth-child(5),
    .contacts_table td:nth-child(3),
    .contacts_table th:nth-child(3) {
        display: none;
    }
}

@media (max-width: 400px) {
    .event_table td:nth-child(4),
    .event_table th:nth-child(4) {
        display: none!important;
    }
}

.electronic_sign_gap {
    height: 53px;
}

.form-section {
    border-top: solid 1px #777;
    padding-top: 20px;
    margin-top: 40px;
}

.event-form-responsible-person {
    width: 200px !important;
    height: 30px !important;
}

.event-form-category-table-body tr{
    height: 38px;
}

.event-form-category-table-body :nth-child(2){
    padding-left: 5px;
}
.category_type {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.organisation_users {
    margin: 5% 0 2% 0;
}

.library_disclaimer {
    margin: 40px;
    padding: 10px;
    border-radius: 8px;
    border: #d9d9d9 solid 1px;
}  

.emergency_response {
    color: #995f02
}

.logo_image {
    width: 300px;
    height: auto;
    object-fit: cover; /* Optional for better image scaling */
}

.saved-message {
  opacity: 0;
  transition: opacity 0.5s ease;
  color: green;
  margin-top: 5px;
  text-align: center;
  position: relative;
}

.saved-message.visible {
  opacity: 1;
}

.info-toggle {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .info-content {
    visibility: hidden;
    width: 250px;
    background-color: #f9f9f9;
    color: #333;
    text-align: left;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: absolute;
    z-index: 1;
    top: 150%; /* Adjust based on your design */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    overflow: visible;
  }
  
  .info-toggle:hover .info-content {
    visibility: visible;
    opacity: 1;
    overflow: visible;
  }

  .info-icon {
    height: 16px; /* Adjust size as needed */
    vertical-align: middle; /* Align with text if necessary */
    padding-left: 5px;
    fill: #007ff6;
    stroke: #007ff6;
  }

  .stripe_box {
    padding: 40px;
    background-color: #fcfcfc;
  }

  .signature-pad {
  display: block;
  width: 100%;
  max-width: 740px;
  height: 300px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  background-color: #fdfdfd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: crosshair;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.image_header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-right: 40px;
} 

.generate_table-header th:nth-child(2),
.generate_table-body td:nth-child(2) {
    width: 300px;
    max-width: 300px;
}

.generate_table-header th:nth-child(3),
.generate_table-body td:nth-child(3) {
    width: 150px;
    max-width: 150px;
}

.generate_table-header th:nth-child(4),
.generate_table-body td:nth-child(4) {
    width: 150px;
    max-width: 150px;
}

.generated-risk-textarea {
    resize: vertical;
}

.generate_table_mitigation_name {
    padding-left: 30px;
}

.generate_dropdown {
    padding-top: 36px !important;
}

/* Glow table wrapper */
.glow-table {
  margin-top: 40px;
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  background: rgba(196, 196, 196, 0.1);
  box-shadow: 0 0 5px rgba(126, 126, 130, 0.5);
  animation: glow 1.5s ease-in-out infinite alternate;
  height: 600px;
}

/* Glow pulse */
@keyframes glow {
  from { box-shadow: 0 0 10px rgba(126, 126, 126, 0.5); }
  to   { box-shadow: 0 0 20px rgb(85, 84, 86); }
}

.speech-bubble {
  background: #000c68;
  color: #fcfcfc;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  position: relative;
  max-width: 80%;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #000c68;
}

.checkbox-container-generated-checklist {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 50px;
}
.risk_table td:nth-child(1),
.risk_table th:nth-child(1) {
    width: 5%;
}

.risk_table td:nth-child(2),
.risk_table th:nth-child(2) {
    width: 10%;
}

.risk_table td:nth-child(3),
.risk_table th:nth-child(3) {
    width: 10%;
}

.risk_table td:nth-child(4),
.risk_table th:nth-child(4) {
    width: 15%;
}

.risk_table td:nth-child(5),
.risk_table th:nth-child(5) {
    width: 20%;
}

.main_risk_table td:nth-child(1),
.main_risk_table th:nth-child(1) {
    width: 5%;
}

.main_risk_table td:nth-child(2),
.main_risk_table th:nth-child(2) {
    width: 10%;
}

.main_risk_table td:nth-child(3),
.main_risk_table th:nth-child(3) {
    width: 10%;
}

.main_risk_table td:nth-child(4),
.main_risk_table th:nth-child(4) {
    width: 15%;
}

.main_risk_table td:nth-child(5),
.main_risk_table th:nth-child(5) {
    width: 10%;
}

.main_risk_table td:nth-child(6),
.main_risk_table th:nth-child(6) {
    width: 20%;
}

@media (max-width: 1000px) {
    .risk_table td:nth-child(2),
    .risk_table th:nth-child(2) {
        display: none;
    }
}

@media (max-width: 1100px) {
    .risk_table td:nth-child(3),
    .risk_table th:nth-child(3) {
        display: none;
    }
}

@media (max-width: 700px) {
    .risk_table td:nth-child(4),
    .risk_table th:nth-child(4) {
        display: none;
    }
}

@media (max-width: 1100px) {
    .main_risk_table td:nth-child(1),
    .main_risk_table th:nth-child(1) {
        display: none;
    }
}

@media (max-width: 1000px) {
    .main_risk_table td:nth-child(3),
    .main_risk_table th:nth-child(3) {
        display: none;
    }
}

@media (max-width: 1100px) {
    .main_risk_table td:nth-child(4),
    .main_risk_table th:nth-child(4) {
        display: none;
    }
}

@media (max-width: 700px) {
    .main_risk_table td:nth-child(5),
    .main_risk_table th:nth-child(5) {
        display: none;
    }
}

.rating-bubble {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
  }
  
.rating-extreme {
    background-color: rgba(0, 0, 0, 0.739);
    color: #fcfcfc;
}

.rating-high {
    background-color: rgb(180, 0, 0);
    color: #fcfcfc;
}

.rating-moderate {
    background-color: rgb(255, 145, 0);
    color: #fcfcfc;
}

.rating-low {
    background-color: rgba(1, 73, 0, 0.888);
    color: #fcfcfc;
}

.rating-unknown {
    background-color: rgba(48, 238, 0, 0.336);
    color: #00ff08;
}

#toggle_consequences {
    display: none;
}

#show_consequences:checked + #toggle_consequences {
    display: block;
}

#toggle_likelihood {
    display: none;
}

#show_likelihood:checked + #toggle_likelihood {
    display: block;
}

.risk_margin {
    margin-top: 15px;
}

.category_list {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 2px 0px;
}

.category_list_label {
    margin: 4px 6px;
}

@media (max-width: 900px) {
    .risk-box-col1 {
        display: none;
    }
}

.small-dropdown {
  border: none;
  background: transparent;
  font-size: inherit;
  color: inherit;
  padding: 3px;
  appearance: none;
}

.small-dropdown:hover {
  background-color: #d0cfcf;
  color: #666
}

.small-dropdown:focus {
  outline: none;
}

@media (max-width: 1100px) {
    .bulk-category-dropdown {
        display: none;
    }
}

@media (max-width: 500px) {
    .mobile_title {
        display: none;
    }
}

@media (min-width: 900px) {
    .category_link {
        display: none !important;
    }
}


/* ADD RISK ROW FORM */

/* app/assets/stylesheets/risks.css */

.add-risk-row {
  position: relative;
  transition: background-color 0.2s ease;
  padding: 0 !important;
}

.add-risk-row:hover {
  background-color: #f8f9fa;
}

.add-risk-row:hover .add-risk-button {
  opacity: 1;
  transform: translateX(0);
}

.add-risk-cell {
  text-align: left;
  position: relative;
}

.risk_table-body .add-risk-button {
    opacity: 0;
}

.risk_table-body:hover .add-risk-button {
    opacity: 0.3;
}

.add-risk-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.2rem 0.5rem 1rem;
  color: #6c757d;
  text-decoration: none;
  border-left: 1px solid #161b1f99;
  border-top: 1px solid #161b1f99;
  border-bottom: 1px solid #161b1f99;
  border-radius: 20px 0px 0px 20px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  cursor: pointer;
  position: absolute; 
  left: -30px;
  top: -32px;
  opacity: 0;
}

.mitigation-cell {
  position: relative;
  vertical-align: top;
  padding-bottom: 2rem;
}

.add-mitigation-button-container {
  position: absolute;
  bottom: 0;
  right: -30px;
  transition: all 0.3s ease;

}

.risk-row .add-mitigation-button-container {
    opacity: 0;
}

.risk-row:hover .add-mitigation-button-container {
    opacity: 0.3;
}

.add-mitigation-button p {
  display: none;
}

.add-mitigation-button:hover p {
    display: inline;
}

.add-mitigation-button-container:hover {
    right: -65px;
    opacity: 1 !important;
}

.add-mitigation-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.2rem;
  color: #6c757d;
  text-decoration: none;
  border-right: 1px solid #161b1f99;
  border-top: 1px solid #161b1f99;
  border-bottom: 1px solid #161b1f99;
  border-radius: 0px 20px 20px 0px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  cursor: pointer;
  background: white;        /* so it looks clean if overlapping table border */
}


.add-risk-button a {
    text-decoration: none !important;
}

.add-risk-button p {
  display: none;
}

.add-risk-button:hover p {
  display: inline;
}

.add-risk-button:hover {
  color: #495057;
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateX(0) scale(1.05);
  border: 1px solid #0d6efd;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  opacity: 1 !important;
}

.plus-icon {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  color: #29313f;
  text-decoration: none !important;
}

.new-risk-frame {
  display: block;
  width: 100%;
}

/* Inline form row styles */
.inline-risk-form-row {
  background-color: #f8f9fa;
  border-left: 3px solid #0d6efd;
}

.inline-form-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.inline-form-grid a {
    text-decoration: none !important;
}

.risk-name-field {
  min-width: 200px;
}

.inline-risk-field {
  color: #fcfcfc;
  font-size: 28px !important;
  font-weight: 600;
  height: 40px !important;
  border: none !important;
  background: none !important;
  padding: 4px 8px;
  font-size: inherit;
  outline: none;
}

.inline-risk-field:hover {
  background: #55a3f1;
  color: #fcfcfc;
  border-radius: 4px;
}

.inline-risk-field:focus {
  background: #233c5e !important;
  color: #fcfcfc;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.risk_aside_break {
    border-top: 1px solid #b6b6b6;
}
.mitigation_form {
    display: inline;
    opacity: 1 !important;
}

.mitigation-form-row {
    border: none;
}

.inline-text-field {
  margin-top: 0.5rem;
  border: none !important;
  background: none !important;
  padding: 4px 8px;
  font-size: inherit;
  outline: none;
}

.inline-text-field:hover {
  background: #f8f9fa;
  border-radius: 4px;
}

.inline-text-field:focus {
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.column-toggles {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

[data-column].hidden {
  display: none;
}

.column-toggles .btn {
  position: relative;
}

.column-toggles .btn.active {
  background-color: #6c757d;
  opacity: 0.6;
}

.column-toggles .btn.active::after {
  font-size: 0.85em;
}

.inline-text-field:focus {
    background: #fcfcfc !important;
}

.mitigation_buttons {
    display: flex;
    flex-direction: column;
}

.main_mitigation_table .form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.main_mitigation_table td.text-center {
  vertical-align: middle;
  text-align: center;
}

.checkbox-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}

.main_mitigation_table td:nth-child(1),
.main_mitigation_table th:nth-child(1) {
    width: 60px;
}

.main_mitigation_table td:nth-child(3),
.main_mitigation_table th:nth-child(3) {
    width: 60px;
}

.main_mitigation_table td:nth-child(4),
.main_mitigation_table th:nth-child(4) {
    width: 60px;
}

.main_mitigation_table td:nth-child(5),
.main_mitigation_table th:nth-child(5) {
    width: 60px;
}

.main_mitigation_table td:nth-child(6),
.main_mitigation_table th:nth-child(6) {
    width: 60px;
}



.vertical-text {
  writing-mode: vertical-lr; /* Left to right, creates top-to-bottom text */
  transform: rotate(180deg); /* Flip it to read bottom-to-top */
  margin: 0;
  padding: 10px 0;
  white-space: wrap;
}

.mitigation_headers {
   max-width: 60px;
   vertical-align: bottom;
}
.home_hero {
    text-align: center;
    min-height: 100vh;
    color: #0F1B2A;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden; 
    background: linear-gradient(90deg, #2910E8, #8A7BF7);
    color: #fcfcfc;
    padding-bottom: 10vh;
}

.home_hero_text {
    margin: auto;
    padding: 50px;
    max-width: 500px;   
}

.home_hero_pic {
    overflow: hidden;
    margin: auto;
}

.hero_image {
    max-height: 70vh;
    max-width: 90vw;
}

.box2-img {
    max-width: 800%;
    position: relative;
    top: -100px;
}

.home_hero h1 {
    font-size:  clamp(2rem, 5vw, 4rem);
    text-shadow: #000;
    margin-bottom: 10px;
}

.feature h3 {
    padding-top: 15px;
}

.feature p {
    font-size: 1.2em;
    line-height: 1.5em;
}

.home_hero_text p {
    font-size: 1.2em;
}

.home_box2{
    background: #0A1330;
    color: #fcfcfc;
    padding: 5vh 10%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home_box2_body {
    position: relative;
    top: -100px;
    padding-top: 50px;
}

.home_box2 h1 {
    font-size: clamp(2rem, 5vw, 4rem);

}

.home_box3{
    background: #fcfcfc;
    color: #004080;
    padding: 15vh 5em;
    min-height: 80vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
}


.home_box4{
    background: linear-gradient(90deg, #2910E8, #8A7BF7);
    color: #004080;
    padding: 15vh 10%;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20%;
    text-align: center;
}

.home_box4 h2{
    font-size:  clamp(2rem, 3vw, 4rem);
    text-align: center;
    margin-bottom: 10px;
}

.home_features {
    color: #fcfcfc;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px
}

.home_features_text {
    min-width: 300px;
    max-width: 600px;
    margin: auto;

}

.home_features_text h2 {
    font-size:  clamp(2rem, 3vw, 4rem);
    text-align: left;
}


.home_features_text h3 {
    font-size: 2em;
    line-height: 1.75em;
    font-size:  clamp(1.2rem, 2vw, 3rem);
}

.home_call_pic {
    max-width: 600px;
    margin: auto;
}

.risk_man_pic {
    margin: 0;
}

.risk_man_pic img {
    max-width: 500px;
    min-width: 300px;
}

.risk_management {
    max-width: 500px;
}

.risk_management h2 {
    font-size:  clamp(2rem, 5vw, 3rem);
    text-align: left;
}

.home_call_to_action {
    background: linear-gradient(90deg, #2910E8, #8A7BF7);
    padding: 10vh 20%;
    height: 80vh;
    display: flex;
    flex-direction: row;
    align-items: center; 
}

.home_call_to_action h2 {
    font-size:  clamp(2rem, 5vw, 4rem);
    text-align: left;
}

.call-to-action {
    color: #fcfcfc;
}

.call_image {
    width: 80vw;
    margin: auto;
    max-width: 800px;
}

.pricing_hero {
    background: linear-gradient(90deg, #2910E8, #8A7BF7);
    min-height: 30vh;
    padding: 13vh 0 8vh 5rem;
    color: #fcfcfc;
    text-align: center;
    text-align: left;
}

.pricing_hero h1 {
    font-size: 3em;
}

.pricing-container {
    background-color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8vh 5rem 8vh 5rem;
    gap: 2rem;
    color: #004080;
}

.pricing-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3em;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.prices {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
}

.pricing-tier {
    margin: 0 2rem 2rem 2rem;
    background-color: #fcfcfc;
    border-radius: 5px;
    border: 1px solid #004080;
    width: 20%;
    height: 54vh;
}

.pricing-tier-header {
    height: 150px;
    background: linear-gradient(90deg, #2910E8, #8A7BF7);
    color: #fcfcfc;
    padding: 1rem;
}

.pricing-tier-body {
    color: #004080;
    padding: 2rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.toggle-container {
    padding-left: 5rem;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 20px;
    position: relative;
    }
    
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    border-radius: 50%;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #004080;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.toggle-labels {
    display: flex;
    justify-content: space-between;
    width: 120px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #333;
    padding: 0 10px;
}

.label-monthly, .label-annually {
    font-weight: bold;
    text-align: center;
}

.label-monthly {
    margin-right: auto;
}

.label-annually {
    margin-left: auto;
}


.thankyou {
    height: 100vh;
    color: #004080;
    width: 100%;
    overflow: hidden; 
    background-color: #95DBFC;
}

.thankyou_text {
    background-color: #95DBFC;
    padding: 5vh 0 5vh 5rem;
}

.thankyou_pic {
    overflow: hidden;
}

.thankyou_image {
    max-height: 100vh;
}

.thankyou h1 {
    font-size:  clamp(2rem, 5vw, 4rem);
    text-shadow: #000;
}

.legal h2 {
    text-align: left;
    margin-top: 1em;
}

.legal h3 {
    text-align: left;
    margin-top: 1em;
}

.legal ul {
    padding-left: 2em;
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.fade {
    opacity: 0;
    transition: all 3s;
}

.show_fade {
    opacity: 1;
}

.feature:nth-child(2) {
    transition-delay: 200ms;
}

.feature:nth-child(3) {
    transition-delay: 400ms;
}

.sign_up_home {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.help-page {
    color: #333;
    margin-top: 20px;
    margin-bottom: 50px;
    line-height: 1.2rem;
}

.help-page li {
    margin-left: 20px;
    line-height: 1.5rem;
}

.help-page ul {
    margin-top: 5px;
    margin-bottom: 15px;
}

.help-page h3 {
    color: #004080;
    margin-top: 20px;
    margin-bottom: 10px;
}

.help-page h4 {
    color: #004080;
    margin-bottom: 5px;
}

.help-page h1 {
    color: #004080;
    font-size: 42px;
    margin-bottom: 50px;
}

.help-page h2 {
    text-align: left;
    color: #004080;
    font-size: 32px;
}

.help-page strong {
    color: #004080;
}

.help-content {
    flex: 1;
    padding: 2rem 3rem;
    width: 100%;
    background-color: #fcfcfc;
    padding-right: 15%;
    padding-left: 5%;
}

.help-content p {
    margin-bottom: 10px;
}

.help-example {
    border: solid 3px #fce721;
    background: #fce62182;
    color: #282828;
    border-radius: 6px;
    padding: 20px;
    margin: 10px 0;
}

.help-example h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000
}

.help-example strong {
    color: #000;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.save-badge {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.3rem;
}

.pricing-tier.featured {
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 4rem;
  background: #0A1330;
}

.value-prop {
  text-align: center;
  padding: 1.5rem;
}

.value-prop h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fcfcfc;
}

.value-prop p {
  color: #fcfcfc;
  line-height: 1.6;
}

.pricing-tier-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pricing-tier-body li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-tier-body li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.price-subtitle {
  color: #fcfcfc;
  font-size: 0.9rem;
}
.user_fields {
    padding: auto;
    margin: auto;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    background-color: #5aa3f7;

}
.user_fields_form {
    background-color: #fcfcfc;
    flex-grow: 1;
    padding: 20px;
    border-radius: 10px;
}

.user_fields_image {
    background-color: #5aa3f7;
    flex-grow: 2;
    border-radius: 0 10px 10px 0;
}

.user_fields_image img {
    display: block;
    margin: 100px 100px 30px 100px;
    width: 35vw;
    max-width: 300px;
    display: none;
}

@media (max-width: 768px) {    
    .user_fields_image img {
        display: none;
        
    }
}

.two_fa_qr {
    margin: auto;
    padding: 50px;
}

.two_fa_qr svg {
  width: 200px;
  height: 200px;
}

.devise_shared_links {
    border-top: 1px solid #66666666;
    padding-bottom: 0;
    padding-top: 50px;
}

.devise_shared_links a {
    color: #666;
    line-height: 1.5em;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;

}

.otp-box {
  width: 40px !important;
  height: 50px;
  text-align: center;
  font-size: 24px;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.otp-box:focus {
  border-color: #007bff;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper .form-control {
  width: 100%;
  padding-right: 2.5rem; /* space for icon */
  box-sizing: border-box;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper .form-control {
  width: 100%;
  padding-right: 2.75rem; /* space for the icon */
  box-sizing: border-box;
}

.password-toggle-btn {
  position: absolute;
  right: 0.25rem;
  bottom: 10px;                /* align with input padding */
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;     /* centers SVG within remaining height */
  justify-content: center;
  padding: 0;
}

.icon {
  width: 50px;
  height: 50px;
  stroke: #222222;
  pointer-events: none;    /* ensures clicks go to button */
}

.password-toggle-btn:hover .icon {
  stroke: #333;
}

.hidden {
  display: none;
}

.recovery-codes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.code-item {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 16px;
}

@media print {
  .btn, .alert { display: none; }
}
.card_box_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card_box {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color:#fcfcfc;
    margin: 10px auto;
    max-width: 400px;
    min-width: 320px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 400px;
    flex: 1;

}

.card_box_brand {
    border-radius: 10px 10px 0 0;
    height: 200px;
}

.card_box_info {
    border-radius: 0 0 10px 10px;
    padding: 20px;
    height: 200px;
}

.subscription_info {
    padding: 20px;
}

.card_image {
    height: 200px;
}

.visa {
    background-color: #1434CB;
}

.mastercard {
    background-color: #141413
}

.edit_card {
    max-width: 500px;

}

#card-element {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

.billing_modal {
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fcfcfc;
    overflow: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2), 0 5px 10px 0 rgba(0,0,0,0.19);
    width: 40vw;
  }

   .pricing-carousel-container {
    width: 100%;
    overflow-x: auto;
    padding: 40px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .pricing-carousel-container::-webkit-scrollbar {
    height: 8px;
  }
  
  .pricing-carousel-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .pricing-carousel-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  
  .pricing-carousel {
    display: flex;
    gap: 24px;
    min-width: min-content;
    padding: 10px;
  }
  
  .pricing-card {
    flex: 0 0 300px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  
  .pricing-card.recommended {
    border-color: #3b82f6;
    border-width: 3px;
    background: linear-gradient(to bottom, #eff6ff, white);
    transform: scale(1.05);
  }
  
  .pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-4px);
  }
  
  .recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .pricing-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .product-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
  }
  
  .price-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .currency {
    font-size: 24px;
    font-weight: 600;
    color: #4b5563;
    margin-right: 4px;
    margin-top: 8px;
  }
  
  .price {
    font-size: 38px;
    font-weight: 800;
    color: #fcfcfc;
    line-height: 1;
  }
  
  .period {
    font-size: 16px;
    color: #6b7280;
    margin-left: 4px;
    align-self: flex-end;
    margin-bottom: 8px;
  }
  
  .description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
    min-height: 60px;
  }
  
  .btn-purchase {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #e5e7eb;
    background: white;
    color: #1f2937;
  }
  
  .btn-purchase:hover {
    background: #f9fafb;
    border-color: #d1d5db;
  }
  
  .btn-purchase.btn-primary {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
  }
  
  .btn-purchase.btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
  }
  
  @media (max-width: 768px) {
    .pricing-card {
      flex: 0 0 280px;
    }
  }

.billing_page-title {
    padding: 40px 10px 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.billing_page-title h1 {
    margin: 0;
    font-size: 2.5em;
    text-align: center;
}

.billing_page-title p {
    margin: 0;
    font-size: 1.2em;
    text-align: center;
    color: #666;
    margin-top: 10px;
}
.blog_tile {
    display: block;
    border: none;
    border-radius: 4px;
    padding: 1em;
    margin-bottom: 1.5em;
    background-color: #fcfcfc;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
  }
  
  .blog_published_date {
    font-size: 0.8em;
    color: #999;
    margin-bottom: 0.5em;
    margin-left: 5%;
  }
  
  .blog_title {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 1em;
    text-align: center;
    color: #004085;
  }

  .blog_title_content {
    border-bottom: 1px solid #555555a3;
    margin-bottom: .5em;
  }

    .blog_title_home {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  
  .blog_slug {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 1em;
    margin-left: 5%;
  }

  .blog_content {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
  }

  .blog_content_home {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
  }

  .page-content_index :hover {
    background-color: #f0f0f0;
  }

  .blog_tile ul,
.blog_tile ol {
  margin-left: 1.5em; /* Indentation */
  padding-left: 1.5em; /* Some browsers use padding */
  margin-bottom: 1em;
}

.blog_tile li {
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.blog_tile blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  color: #666;
  font-style: italic;
  margin: 1em 0;
}

.youtube-embed {
  margin: 1em 0;
  text-align: center;
}

.blog_index_title {
  font-size: 4em;
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 0;
  text-align: center;
  color: #004085;
}

.blog_subtitle {
  font-size: 1.4em;
  font-weight: normal;
  margin-bottom: 1.5em;
  margin-top: 1em;
  text-align: center;
  color: #004085;
}
 .settings-container {
    display: flex;
    min-height: 100vh;
    background-color: #f5f5f5;
  }

  .settings-sidebar {
    width: 280px;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
  }

  .settings-sidebar h2 {
    padding: 0 1.5rem;
    margin: 0 0 2rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
  }

  .settings-nav {
    display: flex;
    flex-direction: column;
  }

  .settings-nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
  }

  .settings-sub-nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
    margin-left: 15px;
  }

  .settings-nav-link:hover {
    background-color: #f8f8f8;
    color: #333;
  }

    .settings-sub-nav-link:hover {
    background-color: #f8f8f8;
    color: #333;
  }

  .settings-nav-link.active {
    background-color: #f0f7ff;
    color: #0066cc;
    border-left-color: #0066cc;
    font-weight: 500;
  }

    .settings-sub-nav-link.active {
    background-color: #f0f7ff;
    color: #0066cc;
    border-left-color: #0066cc;
    font-weight: 500;
  }

  .settings-nav-link .icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
  }

  .settings-content {
    flex: 1;
    padding: 2rem 3rem;
    max-width: 900px;
  }

  .settings-tab {
    display: none;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .settings-tab h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
  }

  .settings-tab p {
    color: #666;
    margin-bottom: 2rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .settings-container {
      flex-direction: column;
    }

    .settings-sidebar {
      width: 100%;
      height: auto;
      position: static;
      border-right: none;
      border-bottom: 1px solid #e0e0e0;
    }

    .settings-content {
      padding: 1.5rem;
    }
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .form-control {
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

  .form-control:focus {
    border-color: #0066cc;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  }

  textarea.form-control {
    resize: vertical;
    min-height: 100px;
  }

  .form-text {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.85rem;
    color: #6c757d;
  }

  .checkbox-group {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
  }

  .checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    cursor: pointer;
    float: left;
  }

  .form-check-label {
    cursor: pointer;
    font-weight: 500;
    padding-left: 1.75rem;
    margin-bottom: 0.25rem;
  }

  .checkbox-wrapper .form-text {
    padding-left: 1.75rem;
    margin-top: 0.25rem;
  }

  .form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 0.75rem;
  }

  .settings-header {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }

  .risk-settings_table_head {
    font-weight: 800;
    color: #007ff6;
    text-align: left;
    vertical-align: middle;
    background-color: #e3e3e0;
  }


  .risk-settings_table_head th {
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
  }

  .risk-settings_table-body tr {  
    background-color: #fcfcfc;
  }

  .risk-settings_table-body td {
    padding: 0.75rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
  }

  .risk-settings_table-body tr:nth-of-type(odd) {
    background-color: #f3f3f3;
  }

  .risk-settings_table-body tr:last-of-type {
      border-bottom: 2px solid #007ff6;
  }

  .risk-settings_table-body textarea.form-control {
    width: 150px;
    background-color: #ffffff00;
    border: none;
  }

  .centered_image {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .ai-settings p {
    color: #161616;
    padding-bottom: 0;
  }

  .ai-settings ul {
    padding-left: 1rem;
    margin-bottom: 1rem;
  }

  .ai-settings li {
    margin-bottom: 0.5rem;
    color: #161616;
  }

  .ai-settings h3 {
    margin-bottom: 1rem;
  }
/* Trix Content Area */
.trix-content {
  border: none;
  border-radius: 4px;
  padding: 0.5rem;
  background-color: #fcfcfc;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Trix Editor */
trix-editor {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 0.5rem;
  background-color: #fcfcfc;
  min-height: 200px;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-sizing: border-box;
}

trix-editor:focus {
  border-color: #80bdff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Toolbar Container */
trix-toolbar {
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #f8f9fa;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Button Groups */
trix-toolbar .trix-button-group {
  margin-right: 0.5rem;
}

/* Base Button Styles */
trix-toolbar .trix-button {
  background: white;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  margin-right: 0.25rem;
  font-size: 0.875rem;
  color: #333;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

trix-toolbar .trix-button:hover {
  background-color: #f1f1f1;
}

/* Active/Selected Button State */
trix-toolbar .trix-button.trix-active {
  background-color: #e7f1ff;
  border-color: #80bdff;
}

/* Icon Button Base */
.trix-button--icon {
  text-indent: -9999px;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0 4px;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
}

.trix-button--icon:hover,
.trix-button--icon.trix-active {
  background-color: #e7f1ff;
}

/* Clear default Trix icons */
.trix-button--icon::before {
  display: none;
}

/* Icon Styles Using SVGs */
.trix-button--icon-bold::after {
  content: '';
  background-image: url(/assets/bold-b50529d8e474ffbc8eac219b93eb1e5349f3cab795e06dee75f9398076218bac.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  text-indent: 0;
}

.trix-button--icon-italic::after {
  content: '';
  background-image: url(/assets/italic-860090073a74afb30676a53f2dba207df9082936038f578c038c2eeaced071e9.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  text-indent: 0;
}

.trix-button--icon-underline::after {
  content: '';
  background-image: url(/assets/underline-f07f592e39642eef22721c78195ad6173d367a4464aab5895b4d9a7c505804a9.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  text-indent: 0;
}

.trix-button--icon-bullet-list::after {
  content: '';
  background-image: url(/assets/bullets-5e0ec407428c019afa8f631fa658485c2c73ee9b3783c2de03a335b92017bf32.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  text-indent: 0;
}

.trix-button--icon-number-list::after {
  content: '';
  background-image: url(/assets/number-1d262d2ff60bf7907aee2f64978411993b11427220512080ebe56ca37d169df8.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  text-indent: 0;
}

/* Text-based icons for features without SVGs */
.trix-button--icon-heading-1::after {
  content: "H1";
  font-weight: bold;
  font-size: 14px;
  font-family: sans-serif;
  color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-indent: 0;
}

/* Hide buttons you don't want */
.trix-button--icon-strike,
.trix-button--icon-link,
.trix-button--icon-quote,
.trix-button--icon-code,
.trix-button--icon-attach,
.trix-button--icon-decrease-nesting-level,
.trix-button--icon-increase-nesting-level,
.trix-button--icon-undo,
.trix-button--icon-redo {
  display: none;
}

/* Keep file attachment group visible if needed, otherwise hide */
trix-toolbar .trix-button-group--file-tools {
  display: none;
}

/* Keep history buttons (undo/redo) hidden */
trix-toolbar .trix-button-group--history-tools {
  display: none;
}

/* Active state styling */
.trix-button--icon.trix-active::after {
  opacity: 1;
}

/* Hover effects */
.trix-button--icon:hover::after {
  opacity: 0.8;
}

lexxy-editor button[data-command="insertCodeBlock"] {
  display: none !important;
}

.lexxy-editor__content {
    background-color: #fcfcfc !important;
    min-height: 400px !important;
    max-height: 600px !important;
    overflow-y: scroll !important;
}

.lexxy-editor__content ul, .lexxy-editor__content ol {
    padding-left: 20px !important;
}

.rich_text_area ul, .rich_text_area ol {
    padding-left: 20px !important;
}
/*
Website colours:

Black: #000

Blue: #004080 - hover for links
Blue: #004085
Blue: #0051b3 - Links
Blue: #007bff - pagination
Blue: #007ff6
Blue: #163564
Blue: #226bbf
Blue: #5aa3f7
Blue: #80bdff
Blue: #95DBFC - home page
Blue: #A5D9F8 - home page

Grey: #20466c
Grey: #333
Grey: #525253 - home page
Grey: #6c757d
Grey: #888 - text
Grey: #aaa
Grey: #e0e0e0
Grey: #e3e3e0
Grey: #ced4da
Grey: #ccc
Grey: #d9d9d9

White: #dae0e5
White: #dee2e6 - border
White: #e2e6ea
White: #fff
White: #fcfcfc - background
White: #fefefe
White: #f1f1f1
White: #f3f3f3
White: #f8f8f8
White: #f8f9fa - background
White: #f9f9f9
Red: #ce4141

*/

/*





















 */

/* The imports below are for your development environment (Rails will handle the concatenation in production) */
@import 'base/base.css';
@import 'base/footer.css';
@import 'base/forms.css';
@import 'base/header.css';
@import 'base/layout.css';
@import 'base/media_queries.css';
@import 'components/buttons.css';
@import 'components/confirmation_modal.css';
@import 'components/modal.css';
@import 'components/pagination.css';
@import 'components/tables.css';
@import 'pages/events.css';
@import 'pages/misc.css';
@import 'pages/risks.css';
@import 'pages/mitigations.css';
@import 'pages/static_pages.css';
@import 'pages/users.css';
@import 'pages/billing.css';
@import 'pages/blog.css';
@import 'pages/settings.css';
@import 'base/rich.css.erb';
