html{
height: 100%
}

body{
    background-color: #0f0f0f;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer{
    background-color: #000;
    color: #797979;
}

h3{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

h4{
    font-size: 16px;
}

.h4 {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  color: white;
}

p{
    color: #D3D3D3;
}

strong,b{
    color: #fff;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.neon{
    color: #e0eeff;
    text-shadow: 0 0 10px #b2cff4;
}

/* Home Page Style */

.title{
    font-size: 4.2rem;
}

.bg-card{
    background-color: #001f3f;
    color: #D3D3D3;
    padding: 42px;
}

.link{
    --bs-btn-bg: #005ce340;
    font-size: 2.5em;
}


.link-small{
    --bs-btn-bg: #005ce340;
    font-size: 1.8em;
}


.link .active,.link-small .active{
    --bs-btn-bg: #1176e1;
}

.btn-social-network{
    --bs-btn-bg: #469efd40;
    --bs-btn-border-width: 0px;
    font-size: 2em;
    color: #95afce;
    border-radius: 100%;
    width: 2em;
    height: 2em;
}

.border-gradient{
    border: #6cf 2px solid;
    -moz-border-image: -moz-linear-gradient(top, #70DCEA 0%, #6A82FB 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #70DCEA 0%, #6A82FB 100%);
    border-image: linear-gradient(to bottom, #70DCEA 0%, #6A82FB 100%);
    border-image-slice: 1;
    box-shadow: 0 0 7px #5077aa;
}

/* Navigation style */
.btn-nav{
    color: #fff;
    --bs-btn-bg: #005ce340;
    font-size: 2em;
}

/* Commissions Page  */
.bg-header{
    background: #001f3f;
}


.title-category {
    display: inline-block; /* Limit title width */
    position: relative;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.title-category::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* height of the line */
    background: linear-gradient(to right, #70DCEA 0%, #6A82FB 100%);
    border-radius: 2px;
}

ul.list-check {
      list-style: none;
      padding-left: 0;
    }

ul.list-check > li::before {
  content: "✓ ";
  color: green;
  font-weight: bold;
  margin-right: 8px;
}

ul.purple-check> li::before {
  color: #806eff;
}

ul.no-style{
list-style-type: none;
padding: 0;
}

.table > :not(caption) > * > *{
    background-color: #003aaa;
    color: #fff;
}

.btn-social {
    background: #469efd40;
    border: none;
    color: #fff;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
}
.btn-social:hover {
    background: #1176e1;
}

