QMainWindow{
   font-family: 'Times New Roman';
   font-size: 20px;
}

QWidget{
    background-color: rgb(45, 45, 45);
    color: rgb(220, 220, 220);
}

QMenuBar::item:selected {    
    background-color: rgb(70, 70, 70);
}

QWidget:selected{
    background-color: rgb(55, 55, 55);
    color: rgb(230, 230, 230);
    alternate-background-color: green;
}

QTabBar::tab {
    border-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: rgb(80, 80, 80);
    border-bottom-width: 0px;
    border-style: solid;
    color: rgb(170, 170, 170);
    padding: 5px;
    margin-left: 3px;
    background-color: rgb(55, 55, 55);
    font-size: 12px;
    alignment: left;
}

QTabBar::tab:selected, QTabBar::tab:last:selected, QTabBar::tab:hover {
    border-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-bottom-width: 0px;
    border-style: solid;
    color: white;
    padding-left: 5px;
    padding-bottom: 4px;
    margin-left: 3px;
    background-color: rgb(65, 65, 65);
}

QWidget{
    background-color: rgb(50, 50, 50);
}

QFrame{
    border-style: solid;
    border-radius: 0;
    border-width: 0;
}

QScrollBar:vertical {
    border: none;
    background: #3A3A3A;
    width: 15px;
    margin: 0px 0px 0px 0px;
}

QScrollBar::handle:vertical {
    background: #707070;
    min-height: 20px;
}

QScrollBar::add-line:vertical {
    background: none;
    height: 10px;
}

QScrollBar::sub-line:vertical {
    background: none;
    height: 10px;
}

QMainWindow{
    background-color: rgb(50, 50, 50);
    color: rgb(220, 220, 220);
}

QTextEdit{
    font-size: 12px;
    padding: 10px 10px;
    background-color: rgb(55, 55, 55);
    border-radius: 3px;
    border: 0px;
    border-color: rgb(70, 70, 70);
    border-style: solid;
}

QTableView{
    background-color: rgb(45, 45, 45);
    border-radius: 3px;
    font-size: 12px;
    border: 0px;
    border-color: rgb(80, 80, 80);
    border-style: solid;
    selection-color: white;
    selection-background-color: rgb(80, 80, 80);
}

QTableWidget{
    color: white;
    background-color: rgb(55, 55, 55);
    border-radius: 3px;
    border: 0px;
    border-color: rgb(70, 70, 70);
    border-style: solid;
    selection-background-color: rgb(100, 100, 100);
    selection-color: white;
}

QHeaderView{
    color: white; 
    background-color: rgb(55, 55, 55);
    alternate-background-color: blue;
    selection-background-color: rgb(80, 80, 80);
}

QHeaderView::section{
    color: white;
    background-color: rgb(45, 45, 45);
    border: 2px;
}

QGroupBox{
    border: 0px;
}

QLabel{
    font-size: 12px;
    font-weight: 9;
    color: rgb(220, 220, 220);
}

QCheckBox{
    color: rgb(220, 220, 220);
}

QComboBox {
    padding: 3px 3px;
    font-size: 11px;
    font-weight: 9;
    color: rgb(220, 220, 220);
    background-color: transparent;
    border-color: #00AA66;
    border-style: solid;
    border: 0;
    outline: 0;
    border-radius: 2px;
    border-bottom: 1px solid rgb(80, 80, 80);
}

QLineEdit {
    padding: 3px 3px;
    font-size: 11pt;
    font-weight: 9;
    color: rgb(220, 220, 220);
    background-color: transparent;
    border-color: white;
    border-style: solid;
    outline: 0;
    border-radius: 2px;
    border-bottom: 1px solid gray;
}

QSpinBox {
    padding: 3px 3px;
    font-size: 11pt;
    font-weight: 9;
    color: rgb(220, 220, 220);
    background-color: transparent;
    border-color: white;
    border-style: solid;
    outline: 0;
    border-radius: 2px;
    border-bottom: 1px solid gray;
}

QPushButton {
    padding: 10px 13px;
    margin= 5px;
    width: 20px;
    color: rgb(220, 220, 220);
    background-color: rgb(70, 70, 70);
    border-color: rgb(5, 5, 5);
    border-style: solid;
    border: 0px solid rgb(100, 100, 100);
    border-radius: 0px;
    font-size: 10pt;
}

QPushButton:pressed {
    background-color: rgb(60, 60, 60);
}

QPushButton:disabled {
    background-color: rgb(90, 90, 90);
    color: rgb(120, 120, 120);
    font-size: 10pt;
}

QTabWidget{
    background-color: rgb(55, 55, 55);
    border-radius: 3px;
    border: 0px;
    border-color: rgb(80, 80, 80);
    border-style: solid;
    selection-background-color: rgb(65, 65, 65);
    selection-color: white;
}

QTableView QTableCornerButton::section {
    background: rgb(65, 65, 65);
}
