.home_table
{
    color: #fec503;
    background-color:rgba(0, 0, 0, 0.9);
}
.home_table thead
{
    
    font-size: 20px;
}
.home_table th
{
    padding-top: 20px;
}
.home_table td
{
    font-size: 15px;
    letter-spacing: 1px;
}
.home_table hr
{
    width: 90%;
    border-color: #fec503;
    margin-top: 5px;
    margin-bottom: 5px;
}

.runner-header {
    margin:auto;
}

.form-group-row{
    display: flex;
}

.sub-section-nav {
    display: flex;
    gap: 0.5rem;
    background: #c8040c;
    border-radius: 46px;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.sub-section-nav-btn {
    border-radius: 46px;
    padding: 0.5rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.sub-section-nav-btn.active {
    background: #fff;
    color: rgb(179,22,64);
}

.flex {
    display: flex;
}

.flex-gap-half {
    gap: 0.5rem;
}

.btn-submit-primary, .btn-submit-primary:focus {
    transition: all 0.5s;
    border: none;
    font-weight: bold;
    background-color: #d9534f;
    color: white;
    padding: 10px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
.btn-submit-primary:hover, .btn-submit-primary:focus{
    background-color: #40340d;
}
.btn-submit-primary[disabled], .btn-submit-primary[disabled]:hover, .btn-submit-primary[disabled]:focus{
    background-color: #ad0000;
}

.visaapp_info_table {
    font-size:12px;
    width: 100%;
}

.visaapp_info_table td {
    padding: 5px 10px;
    font-size: 12px;
}

.visaapp_info_table td.table_title {
    background: #ddd;
    width: 40%;
    text-align: center;
    border: 1px solid #ccc;
}

.visaapp_info_table td.table_desc {
    width: 60%;
    border: 1px solid #ccc;
}

#breadcrumbs {
    font-size: 20px;
    margin: 1rem 2rem 2rem;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    color: #5a738e;
}

#breadcrumbs .breadcrumb-separator {
    width: 2.5rem;
    text-align: center;
}

#breadcrumbs .breadcrumb-content.main-breadcrumb {
    color: #000;
}

@media (max-width: 750px) {
    .adjustable-table {
        border: 0;
    }
  
    .adjustable-table thead {
        display: none;
    }
  
    .adjustable-table tr {
        display: block;
        margin-bottom: 15px;
    }
  
    .adjustable-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px;
        border: 1px solid #ddd;
        border-top: none;
    }
  
    .adjustable-table td:first-child {
        border-top: 1px solid #ddd;
    }
  
    .adjustable-table td:before {
        content: attr(data-title);
        font-weight: bold;
        flex: 0 0 40%;
        text-align: left;
    }
  }

