/* General style */
:root {
    --brand-color: rgb(213,0,50);
}

body{
    background-color: #f2f2f2;
    font-family: 'Cairo', sans-serif;
    overflow-y:scroll;
}

.content{
    background-color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.content #search-results {
    min-height: 20rem;
}

.navbar {
    background-color: rgb(213,0,50);
}

.btn-primary {
    background-color: rgb(213,0,50);
    border-color: rgb(213,0,50);
}
.btn-primary:hover, .btn-primary:active {
    background-color: rgb(158, 0, 40) !important;
    border-color: rgb(158, 0, 40) !important;
}

h1 {
    font-size: 30px;
    font-weight: normal;
}

h1 .user{
    font-size: 22px;
}

a {
    color: rgb(213,0,50);
}

a:hover {
    text-decoration: none;
}
/* Login style */

.login {
    max-width: 260px;
    margin: 0 auto;
}

.login input {
    width: 100%;
    margin-bottom: 15px;
}

.term-detail {
    width: 100%;
}

.term-detail td {
    padding: 5px;
}

.modal-lg {
    width: 100%;
    max-width: 1200px;
}


/* Flashmessenger style */
ul.alert {
    list-style: none;
}

/* pagination style */
.pagination-nav{
    text-align: center;
}

nav ul.pagination{
    display: inline-block;
}
nav ul.pagination li{
    padding: 0 2px;
    display: inline-block;
}

/* users action hover style */
[data-title]:hover:after {
    visibility: visible;
}

[data-title]:after {
    content: attr(data-title);
    background-color: rgb(213,0,50);
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    padding: 4px 8px 4px 8px;
    visibility: hidden;
    margin-left: 5px;
    border-radius: 3px;
}

#search-data::-ms-clear {
    display: none;
}

.form-group > ul > li {
    color: red;
}