.resizable-card {
    position: relative;
    min-height: 200px;
    height: 800px;
    transition: height 0.1s ease;
}

.resize-handle {
    width: 100%;
    height: 10px;
    background-color: #e9ecef;
    position: absolute;
    bottom: 0;
    cursor: ns-resize;
    border-top: 1px solid #dee2e6;
    z-index: 100;
}

.resize-handle:hover {
    background-color: #dee2e6;
}

#div-iframe {
    height: calc(100% - 10px);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

iframe {
    border-radius: 10px;
    flex-grow: 1;
}

#mobilelink {
    display: none;
}

.button {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    padding: 6px 12px;
    align-self: flex-start;
}

@media (max-width: 767px) {
    /* iframe {
        display: none;
    } */
    #div-iframe {
        display: none;
    }
    #mobilelink {
        display: block;
    }
}