/* wqy about page */
.sidebar-canva a {
    font-size: 16px;
}

.sidebar-canva .nav-link {
    color: black;
}

.sidebar-canva .nav-link.active {
    color: white;
    background-color: #68383C;
}

.gradient-label {
    font-size: 3rem !important;
    font-weight: bold !important;
    background: linear-gradient(to right, #68383C, #9370DB) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

.about-canva {
    background-color: #F5F5F5;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-canva p, .accordion p {
    font-size: 1.2rem;
    color: black;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.accordion.fw-bold {
    font-size: 1.5rem;
}

.accordion-button p {
    color: #68383C;
}

.accordion-button.collapsed p {
    color: black;
}

.gradient-line-about {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #68383C, #9370DB);
    margin: 1.5rem 0px;
}

.gradient-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #68383C, #9370DB);
    margin: 2rem 0px;
}

.border-thick {
    border-width: 2px !important;
    border-radius: 10px;
}

.section-title {
    font-size: 1.5rem;
    color: #000;
}

.key-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.key-text {
    font-size: 1.05rem;
}

.btn-collapse {
    background-color: #68383C;
    color: #fff;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 1rem 1rem;
    border-width: thin;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.btn-collapse[aria-expanded="true"] {
    background-color: #D4AF37; /* Background color when expanded */
}

.btn-collapse[aria-expanded="false"] {
    background-color: #68383C; /* Default background color when collapsed */
}

.btn-collapse:hover {
    background-color: #D4AF37;
    color: #fff;
}

.card {
    transition: transform 0.2s ease-in-out;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    margin-bottom: 0;
    font-weight: 500;
    color: #68383C;
}

.sidebar-canva {
    background-color: #E6DEDE;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #68383C;
    border: none;
}

.btn-primary:hover {
    background-color: #8e7c3e;
    color: #fff;
}

.table-responsive-custom {
    max-height: 300px;
    overflow-y: auto;
}

.gradient-text {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(90deg, #68383C, #9370DB);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

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