body
{
    font-family: 'Almarai',sans-serif;
    background-color:#eee;
}

/* Header Style */
.header
{
    background-color:#185886;
    color:#eee;
    padding:0;
    border-top: 3px solid #d4f100;
}

.header-container
{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-flow: column;
}

.header .data-header
{
    padding-bottom: 20px;
}

.header .data-header h3
{
    border: 2px solid #eee;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 3px 3px 9px #444;
}


.header .af-navbar
{
    list-style:none;
    margin: 0;
}

.header .af-navbar li
{
    display:inline-block;
    transition: all 0.3s ease;
    padding:10px 20px;
}



.header .af-navbar li a
{
    color:#eee;
    text-decoration:none;
    font-size:1.1em
}

.header .af-navbar li:hover
{
    background: rgba(188,222,245,0.2);
    border-radius: 5px 5px 0px 0px;
}

.header .af-navbar li.here
{
    background-color: #eee;
    border-radius: 5px 5px 0px 0px;
}

.header .af-navbar li.here a
{
    color:#185886;
    font-weight:bold
}


/* Login Section Style */
.login input[type='submit']
{
    background-color:#47a7eb;
    color:#eee;
}

.login h2
{
    color:#185886;
}

@media (min-width:990px)
{
    .login form
    {
        width:60%;
        margin:auto
    }
}







/* Panel Section Style */
#panel
{
    padding:20px 0;
}

#panel .right,
#panel .left
{
    padding:20px;
    display:flex;
    flex-flow:column;
}

#panel .section
{
    background-color: #fff;
    margin-bottom: 30px;
    height: fit-content;
    width: 100%;
    border-radius: 10px;
    border-right: 10px solid #185886;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 9px 0px;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: #185886;
    border-radius: 5px;
    bottom: -3px;
    left: -3px;
}

#panel .section h3
{
    padding:20px;
    margin-bottom:0;
}

#panel .section hr
{
    margin:0;
}

#panel .section .container
{
    width:80%;
    padding:20px 0;
}

.no-data
{
    text-align: center;
    color:#bbb;
}



/* Live section style */
    .chat
    {
        height:100%;
    }
    .show_msgs
    {
        padding:10px;
        border:1px solid #333;
        height:400px;
        overflow-y:auto;
    }


    .singleMsg
    {
        width: 90%;
        margin: 5px auto;
        padding: 10px;
        border: 2px solid #eee;
        border-radius: 5px;
        box-shadow: 8px 0px 10px #eee;
        color: #eee;
    }

    .name
    {
        border:1px solid #eee;
        padding:5px;
        float: right;
        margin-bottom: 5px;
    }

    .date
    {
        padding:5px;
    }