/*
=====================================================
=  Top Example
=====================================================
*/
.hide-show-container {
    width: 100%;
    margin-top: 20px;
}

.hide-show-container #btn1 {
    width: 100%;
    background-color: #555555;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.1s ease;
    transform: scale(1);
    border: none;
    cursor: pointer;
    outline: none;
}

.hide-show-container #btn1:hover {
    background-color: #333333;
}

.hide-show-container #btn1:focus {
    box-shadow: 0 0 0 2px rgba(76, 79, 82, 0.5);
}

.hide-show-container #content1 {
    margin-top: 10px;
    width: 100%;
    padding: 24px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    display: none;
}

.hide-show-container #panelContent {
    color: #4b5563;
    font-size: 14px;
}


/*
=====================================================
=  Example hide() -> Milliseconds
=====================================================
*/
.hs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: auto;
    max-width: fit-content;
    place-content: center;
    place-items: center;
}

@media (max-width: 680px) {
    .hs-container {
        gap: 1rem;
    }    
}

.hide-show-btn {
    background-color: #555555;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    max-height: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    outline: none;
    text-wrap: nowrap;
}

.hide-show-btn:hover {
    background-color: #333333;
}

.hide-show-btn:focus {
    box-shadow: 0 0 0 2px rgba(76, 79, 82, 0.5);
}

.box-placeholder {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-placeholder.hidden .hide-show-content {
    display: none;
}

.hide-show-content {
    width: 200px;
    height: 60px;
    background-color: #f8f9fa;
    border: 1px solid #555555;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: block;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    font-weight: 600;
    color: #374151;
}

.callback-msg {
    display: block;
    color: red;
    font-weight: bold;
}

#showcontent5 .callback-msg,
#togglecontent5 .callback-msg{
    margin-top: -20px;
}