.thesis-header {
    /* color: red; */
    padding: 0 0 20px 0;
}

.thesis-body label {
    display: block;
    width: 200px;
    margin-right: 15px;
}

.thesis-alert {
    display: block;
    margin: 20px 20px 20px 20px;
    padding: 20px 20px 20px 20px;
}

.thesis-alert-info {
    background-color: skyblue;
    color: #fff;
    border-radius: 3px;
}

.thesis-alert-success {
    background-color: limegreen;
    color: #fff;
    border-radius: 3px;
}

.thesis-alert-warning {
    background-color: orange;
    color: #fff;
    border-radius: 3px;
}

.thesis-alert-danger {
    background-color: red;
    color: #fff;
    border-radius: 3px;
}

.thesis-row {
    display: flex;
    padding: 5px;
}

.thesis-col {
    /* display: flex;
    align-items: center; */
    width: 100%;
}

.thesis-text-right {
    text-align: right;
}

.thesis-text-center {
    text-align: center;
}

.thesis-input {
    width: 350px;
    padding: 5px;
}

.thesis-input-error {
    width: 100%;
    color: red;
    
}

.thesis-btn {
    padding: 5px 10px 5px 10px;
    cursor: pointer;
}

.thesis-btn-primary {
    background-color: #03a1fc;
    border: solid 1px;
    color: #fff;
}

.thesis-btn-danger {
    background-color: red;
    border: solid 1px;
    color: #fff;
}

.thesis-btn-warning {
    background-color: orange;
    border: solid 1px;
    color: #fff;
}

.thesis-btn-success {
    background-color: limegreen;
    border: solid 1px;
    color: #fff;
}

.thesis-btn-info {
    background-color: skyblue;
    border: solid 1px;
    color: #fff;
}

.thesis-btn-primary:hover {
    background-color: #03cefc;
}

.thesis-btn-danger:hover {
    background-color: orangered;
}

.thesis-btn-warning:hover {
    background-color: rgb(187, 65, 21);
}

.thesis-btn-success:hover {
    background-color: greenyellow;
}

.thesis-btn-info:hover {
    background-color: blue;
}

.thesis-table {
    border-collapse: collapse;
    width: 100%;
}

.thesis-table thead {
    border-bottom: 1px solid #000;
}

.thesis-table th {
    padding: 10px 5px 10px 5px;
} 

.thesis-table td {
    padding: 10px 5px 10px 5px;
}

.thesis-table.thesis-table-striped tr:nth-child(even) {
    background-color: #eee;
}