:root {
    --primary-color: #F6D8AE;
    --secondary-color: #2E4057;
    --dark-grey: #131313;
    --light-grey: #212121;
    --very-light-grey: #A0A0A0;
    --green: #00bf63;
    --red: #ff3131;
    --accent: #5271ff;
}

/* Containers */
.a_container {
    margin-top: 150px;
    text-align: center;
}

.a_container h5 {
    color: var(--very-light-grey);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 100px;
}

.a_container h1 span {
    background: linear-gradient(to right, var(--primary-color), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.b_container {
    margin-bottom: 100px;
    text-align: left;
}

.b_container h3 {
    margin-bottom: 25px;
}

.b_container .row .col-lg-3 {
    margin-bottom: 50px;
}

.c_container {
    margin-top: 125px;
    text-align: center;
}

.c_container .circle-icon {
    margin-bottom: 15px;
}

.c_container h1 {
    color: var(--primary-color);
}

.c_container h5 {
    color: var(--very-light-grey);
    font-size: 1.5rem;
    font-weight: 400;
}

.d_container {
    margin-top: 50px;
}

.d_container h2 {
    margin-bottom: 15px;
}

.d_container p {
    color: var(--very-light-grey);
}

.d_container table {
    width: 100%;
    border-collapse: collapse;
}

.d_container table th {
    color: var(--very-light-grey);
    background-color: var(--dark-grey);
    font-weight: 400;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--light-grey);
}

.d_container table td {
    color: var(--very-light-grey);
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--light-grey);
}

.e_container {
    margin-top: 50px;
}

.e_container h2 {
    margin-bottom: 15px;
}

/* Add-on card */
.add_on_card {
    border-radius: 10px;
    background-color: var(--dark-grey);
    height: fit-content;
    width: 18rem;
    border: 1px solid var(--light-grey);
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

/* Hover effects for resource cards */
.add_on_card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--light-grey);
}

.add_on_card:hover .card-body .card-title {
    color: var(--primary-color);
}

.add_on_card:hover .card-header .circle-icon {
    background-color: var(--primary-color);
}


.add_on_card .card-header {
    padding-top: 15px;
}

.circle-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.circle-icon-disabled {
    background-color: var(--very-light-grey);
}

.circle-icon i {
    font-size: 24px;
    color: black;
}

.add_on_card img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    object-fit: cover;
}

.add_on_card .card-body {
    padding: 20px;
    height: fit-content;
}

.addon_selected {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px var(--primary-color);
}

.add_on_card .card-body .card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 10px;
}

.add_on_card .card-body .card-title-disabled {
    color: var(--very-light-grey);
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 10px;
}

.card-body-disabled {
    color: var(--very-light-grey);
}

.add_on_card .card-body .card-subtitle {
    font-size: 1.25rem;
    color: var(--very-light-grey);
    font-weight: 500;
}

.add_on_card .card-body .card-text {
    height: 100px;
    margin-top: 10px;
}

.card-buttons .btn-group {
    border: none;
    color: var(--very-light-grey);
    background-color: var(--light-grey);
}

.card-buttons .btn-group .accept {
    color: var(--green);
}

.card-buttons .btn-group .accept:hover {
    background-color: var(--green);
    color: white;
}

.card-buttons .btn-group .reject {
    color: var(--red);
}

.card-buttons .btn-group .reject:hover {
    background-color: var(--red);
    color: white;
}

.card-buttons .btn-group .info {
    color: var(--very-light-grey);
}

.card-buttons .btn-group .info:hover {
    background-color: var(--very-light-grey);
    color: white;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
    border: 1px solid var(--very-light-grey);
}

.in_info {
    margin-bottom: 10px;
}

/* Active Section */
.active_section {
    margin-top: 50px;
    color: var(--very-light-grey);
}


/* Profiles */
.profile_card {
    border-radius: 10px;
    background-color: var(--light-grey);
    color: var(--very-light-grey);
    height: fit-content;
    padding: 25px;
    text-align: left;
    margin-top: 15px;
}

.profile_card div div h5 {
    color: var(--very-light-grey);
    font-size: 1.25rem;
    font-weight: 500;
}

.profile_card div div i {
    font-size: 24px;
    color: var(--very-light-grey);
}

.profile_card .row .col:last-child {
    text-align: right;
}

.profile_textarea {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    background-color: var(--dark-grey);
    color: var(--very-light-grey);
    border: 1px solid var(--light-grey);
    padding: 10px;
}

/* Profile activated */
.profile_activated {
    border: 1px solid var(--primary-color);
}

.profile_activated .row .col i {
    color: var(--primary-color);
}

.profile_activated .row .col h5 {
    color: var(--primary-color);
}