/*
Theme Name: OptexApp Theme
Theme URI: #
Author: Optex
Author URI: #
Description: A custom theme for WordPress
Version: 1.0
*/

/* sidebar */
#dashboardSidebar {
    transition: all 0.3s ease-in-out;
}

/* erga table */
.sortable-column span {
    text-decoration: none; 
    cursor: pointer;
    font-weight: 300;
}

.sortable-column.active span {
    text-decoration: underline; 
    font-weight: 600; 
}

.bg-gray {
    background-color: #f2f2f2;
}
.bg-light-green {
    background-color: #def6eb;
}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
  }
  .custom-file-input::before {
    content: 'Επιλογή Αρχείων...';
    display: inline-block;
    background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
  }
  .custom-file-input:hover::before {
    border-color: black;
  }
  .custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
  }