.stepper-container {
    display: flex;
    min-height: 100vh;
}
/* Sidebar styling */
.stepper-sidebar {
    width: 280px;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.stepper-sidebar h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: rgb(35, 29, 4);
    font-weight: bold;
    text-align: center;
}
.stepper-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s;
}
.stepper-sidebar .nav-link:hover {
    background: #f1f3f5;
}
.stepper-sidebar .nav-link.active {
    background: black;
    color: silver;
}
.stepper-sidebar .nav-link.active i {
    color: #fff;
}
.stepper-sidebar i {
    font-size: 1.2rem;
    color: black;
}
.stepper-sidebar .nav-link:disabled{
    background-color: #fafafa;
    color: #bbb!important;
}
.stepper-sidebar .nav-link:disabled i{
    color: #bbb!important;
}
/* Content Area */
.stepper-content {
    flex: 1;
    padding: 40px;
    background: #fff;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.stepper-content h3 {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.hg-picker{
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0px 7px;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    background-color: silver;
    box-shadow: 1px 1px 4px rgb(242, 230, 213);
}
.hg-picker.active{
    background-color: black;
    color: silver;
}
.hg-picker .hg-radio{
    display: none;
}

.lgt-card{
    border: 6px solid #888;
    cursor: pointer;
    display: block;
}
.lgt-card.active{
    border-color: red!important;
}

.font-card{
    padding: 15px 20px;
    font-size: 2em;
    font-weight: bold;
    background-color: black;
    color: white!important;
    border-radius: 10px;
    cursor: pointer;
}
.font-card.active{
    border: 5px solid red;
}

.color-picker{
    padding: 7px 15px;
    border: 1px solid #aaa;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    cursor: pointer;
    font-weight: 500;
    background-color: #ddd;
    border-radius: 10px;
}
.color-picker.active{
    background-color: #ff171f;
    color: #fff;
}
.color-picker .disp{
    width: 20px;
    margin-right: 7px;
    height: 20px;
    display: inline-block;
    border-radius: 100%;
}

@media(max-width: 992px) {
    .stepper-container {
        flex-direction: column;
    }
    .stepper-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }
    .stepper-sidebar .nav-link {
        flex-direction: column;
        font-size: 0.9rem;
        min-width: 100px;
    }
}