.marce-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    z-index: 9999;
    display: none;
}
.marce-modal .modal-container {
    width: 400px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.marce-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #007bff;
    color: white;
    cursor: move;
}
.marce-modal .modal-title {
    font-weight: 600;
    font-size: 16px;
}
.marce-modal .modal-body {
    padding: 16px;
}
.marce-modal .modal-footer {
    padding: 12px 16px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #eee;
}
.marce-modal .btn-cerrar {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}
.marce-modal .btn-minimize {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: bolder;
}
.marce-modal .btn-cerrar::before {
    content: "✖";
    font-size: 16px;
}
.marce-modal .modal-resize {
    width: 15px;
    height: 15px;
    background: transparent;
    position: absolute;
    right: 1px;
    bottom: 1px;
    cursor: se-resize;
    font-weight: bolder;
    color: black;
}