.formTable {
	border:1px solid #999;
	border-top-width:0px;
	border-bottom-width:0px;
    border-radius: 6px;
}

.formTable th{
    background-color: #4e73df;
    color: white;
    font-weight: 800;
    text-align: center;
    padding: 10px;
}

.formTable td {
	background-color:#fff;
	border-bottom:1px solid #999;
    vertical-align: top;
}

.formTable textarea,
.formTable select {
    width: 98%;
}
.formTable select option {
    color: black;
}
.formTable select option:disabled {
    color: grey;
}

.formTable .instruction {
    text-align: center;
    color: #060;
}

.formTable input[type="text"] {
    width: 98%;
}
.formTable input[type="text"].num {
    width: 50px;
}

.formTable .formInputTd input[type="text"] {
    display: inline-block;
}



/* ---- Sortable list ------ */
#sortable_orig, #sortable_sel {
    border: 1px solid #eee;
    width: 35%;
    min-height: 80px;
    list-style-type: none;
    margin: 0;
    padding: 5px 0 0 0;
    float: left;
    margin-right: 10px;
}
#sortable_sel {
    width: 60% !important;
    background-color: #359fde;
}

#sortable_orig li, #sortable_sel li {
    margin: 0 5px 5px 5px;
    padding: 5px;
    font-size: 14px;

}
#sortable_sel li {
    background-color: #fff;
}


/* ---------------- TABLES ---------------- */
.list_table {
    width: 100%;
    margin: 5px 0;
}
.list_table .btn {
    margin-left: 12px;
}
.list_table th {
    vertical-align: bottom;
    color: #fff;
    border: 1px solid transparent;
    padding: 3px 5px;
    background: #4e73df;
}
.list_table th.bottom {
    vertical-align: top;
}

.list_table tr {
}
.list_table tr:hover {
    background-color: #f1f1ff;
}

.list_table td {
    vertical-align: bottom;
    color: #333;
    border: 1px solid transparent;
    border-bottom: 1px solid #2b53c5;
    padding: 4px 5px;
}

.list_table th.options {
    text-align: right;
}
.list_table td.options {
    text-align: right;
}

.list_table .td_archived {
    background-color: #ddd;
}

/* ----- Buttons ---- */
.list_table a.hideFormButton {
    visibility: hidden;
}

/* --------- FILE UPLOAD -------- */
.form_file_delete_box {
    display: inline-block;
    clear: both;
    float: right;
    padding: 5px 10px;
    border: 1px solid red;
    background-color: rgba(255,0,0,0.2);
}

.form_file_delete_box label {
    display: inline-block;
    margin: 0;
}

.form_file_preview {
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px solid #ccc;
}


/* ------------- Help info ----------- */
[sxf-element="info_icon_area"] {
    position: relative;

}
[sxf-element="info_icon_area"].active {
    z-index: 999;
}
[sxf-element="info_icon_area"] [sxf-part="info_area"] {
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
    background-color: white;
    color: #31407c;
    border: 1px solid #31407c;
    padding: 10px 10px;
    min-width: 40vw;
    -webkit-box-shadow: 0px 3px 22px 5px rgba(0,0,0,0.5);
    box-shadow: 0px 3px 22px 5px rgba(0,0,0,0.5);
}
[sxf-element="info_icon_area"] [sxf-part="info_icon"] {
    color: orangered;
    margin-right: 5px;
    cursor: pointer;
    font-size: 16px;
}
[sxf-element="info_icon_area"] [sxf-part="close_icon"] {
    float: left;
    color: orangered;
    margin-right: 10px;
    cursor: pointer;
}


/* ---------------- AJAX LOADER ELEMENT -------------------- */
.ajax-loader-container {
    position: relative;  /* Pozicionálás a lebegő formhoz */
}
.ajax-loader-icon-button {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    display: inline-block; /* Fontos, hogy a form közvetlenül fölé kerüljön */
}

.ajax-loader-floating-form {
    position: absolute;
    top: 0px; /* Állítsd be a kívánt pozíciót */
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    display: none; /* Kezdetben rejtett */
    z-index: 1000; /* Fontos, hogy a többi elem fölött legyen */
    width: 200px;
}

.ajax-loader-container .ajax-loader-close {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    color: red;
    background-color: white;
    border: 1px solid grey;
    font-weight: 900;
    padding: 0px 5px;
}
.ajax-loader-container .ajax-loader-close:hover {
    background-color: red;
    color: white;
}

.submit-ajax-loader {
    margin-top: 2px;
}