/* Auto Accordion Minimalist Styles */
.aa-wrapper-f8a7b85b {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.aa-item {
    border-radius: 0 !important; /* Force remove all border-radius */
    overflow: hidden;
}

.aa-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
    background: transparent !important; /* No background */
    border-bottom: 1px solid #000000; /* Single 1px solid black border at bottom */
    position: relative;
    user-select: none;
    border-radius: 0 !important; /* Force remove all border-radius */
}

.aa-header-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    transition: color 0.3s ease;
}

.aa-content-wrapper {
    overflow: hidden;
    border-radius: 0 !important; /* Force remove all border-radius */
}

.aa-content {
    padding: 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    border: none !important; /* Content box has no border */
}

.aa-button-wrapper {
    display: block;
}

.aa-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.aa-btn:hover {
    opacity: 0.9;
}

/* Progress Indicator at the bottom of active title box */
.aa-progress-container {
    position: absolute;
    bottom: -1px; /* Overlaps with the border-bottom nicely */
    left: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.aa-progress-bar {
    width: 0%;
    height: 2px;
    background-color: #000000;
}
