/* =========================================================
   VENTANA FLOTANTE — WINDOW MANAGER CD
   ========================================================= */

.floating-window-CD {

    position: absolute;

    display: flex;

    flex-direction: column;

    background: rgba(42, 42, 42, .95);

    color: #ffffff;

    border: 1px solid #666;

    border-radius: 8px;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, .45);

    overflow: hidden;

    user-select: none;

}


/* =========================================================
   HEADER
   ========================================================= */

.floating-window-CD-header {

    height: 34px;

    min-height: 34px;

    flex-shrink: 0;

    background: #3b3b3b;

    border-bottom: 1px solid #555;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 10px;

    cursor: move;

}


/* =========================================================
   TITLE
   ========================================================= */

.floating-window-CD-title {

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: bold;

    color: #fff;

}


/* =========================================================
   CONTROLS
   ========================================================= */

.floating-window-CD-controls {

    display: flex;

    align-items: center;

    gap: 2px;

}


/* =========================================================
   MINIMIZE
   ========================================================= */

.floating-window-CD-minimize {

    width: 24px;

    height: 24px;

    padding: 0;

    border: none;

    background: transparent;

    color: white;

    font-size: 18px;

    line-height: 24px;

    text-align: center;

    cursor: pointer;

    border-radius: 4px;

}

.floating-window-CD-minimize:hover {

    background: #5a5a5a;

}


/* =========================================================
   CLOSE
   ========================================================= */

.floating-window-CD-close {

    width: 24px;

    height: 24px;

    padding: 0;

    border: none;

    background: transparent;

    color: white;

    font-size: 16px;

    line-height: 24px;

    text-align: center;

    cursor: pointer;

    border-radius: 4px;

}

.floating-window-CD-close:hover {

    background: #5a5a5a;

}


/* =========================================================
   BODY
   ========================================================= */

.floating-window-CD-body {

    flex: 1;

    min-height: 0;

    overflow: auto;

    background: #2d2d2d;

    color: white;

    padding: 12px;

}


/* =========================================================
   RESIZE
   ========================================================= */

.floating-window-CD-resize {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 16px;

    height: 16px;

    cursor: nwse-resize;

}

.floating-window-CD-resize::after {

    content: "";

    position: absolute;

    right: 3px;

    bottom: 3px;

    width: 9px;

    height: 9px;

    border-right: 2px solid #bfbfbf;

    border-bottom: 2px solid #bfbfbf;

}


/* =========================================================
   CONTENIDO DEL GESTOR
   ========================================================= */

.data-entry-manager-content {

    width: 100%;

    box-sizing: border-box;

}


/* =========================================================
   CAMPOS
   ========================================================= */

.data-entry-manager-field {

    width: 100%;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    margin-bottom: 16px;

}


/* =========================================================
   LABEL
   ========================================================= */

.data-entry-manager-field label {

    display: block;

    width: 100%;

    margin-bottom: 7px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: bold;

    line-height: 16px;

    text-align: left;

    color: #ffffff;

}


/* =========================================================
   SELECTORES
   ========================================================= */

.data-entry-manager-field select {

    display: block;

    width: 100%;

    min-height: 32px;

    box-sizing: border-box;

    padding: 5px 8px;

    border: 1px solid #666;

    border-radius: 4px;

    background: #3a3a3a;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 20px;

}


.data-entry-manager-field select:focus {

    outline: none;

    border-color: #888;

}


.data-entry-manager-field select option {

    background: #3a3a3a;

    color: #ffffff;

}

