body
{
    margin: 0;
    background: url("../system/data/images/website_background.jpg");
    background-size: 25%;
    background-attachment:  fixed;
    color: black;
    font-family: "Raleway", sans-serif;
    background-color: #f5f8fa;
    line-height: 1.6;
    font-size: 16px;
}

nav, img, button
{
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

section, footer, .alert-section
{
    margin: 2.5% auto;
    width: 95%;
    padding: 1%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 10px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 10px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 10px 0 rgba(0, 0, 0, 0.4);
}

section, footer
{
    display: block;
    background: white;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

section hr
{
    border-style: none;
    border-width: 0px;
    border-bottom: 1px solid #4CAF50;
}

p
{
    font-family: "Raleway";
    padding: 1%;
    margin: 0;
}

footer p 
{
    font-size: 120%;
    text-align: center;
}

/*
    RANDOM CRAP
*/
.section-content
{
    border: 10px solid #4CAF50;
}

/*
    RESPONSIVE IMAGE
*/
.responsive-image
{
    display: inline-block;
}

.responsive-image.centered      { display: block !important; margin: 0 auto; }
.responsive-image.small         { max-width: 25%; }
.responsive-image.medium        { max-width: 40%; }
.responsive-image.large         { max-width: 60%; }
.responsive-image.cover-page    { max-width: 100%; }

/*
    ROUNDED IMAGE
*/
.rounded-image
{
    display: inline-block;
    max-width: 100%;
    margin: 0.5%;
    object-fit: cover;
    -o-object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.rounded-image.small
{
    width: 150px;
    height: 150px;
}

.rounded-image.medium
{
    width: 250px;
    height: 250px;
}

.rounded-image.large
{
    width: 350px;
    height: 350px;
}

/*
    Custom scrollbar CSS
    Important notes:
    - This will not work on Firefox. It is a pointless, albeit nice feature which I don't want to bother too much with.
*/
::-webkit-scrollbar 
{
    width: 10px;
}

::-webkit-scrollbar-track 
{
    background: #4CAF50;
}

::-webkit-scrollbar-thumb 
{
    background: white;
}

.ajax-response .notification
{
    font-size: bold;
    text-align: center;
}

/*
    FOR PAGE CONTENT MODIFIED THROUGH TINYMCE
*/
.tinymce-pagecontent-area
{
    padding: 1%;
    margin: 0;
}

.tinymce-pagecontent-area p 
{
    /* Don't inherit default text padding */
    padding: 0% !important;
}

.edit-account-header
{
    color: black;
    text-align: center;
}

/*
    DEFAULT TABLES
*/
.default-table
{
    table-layout: fixed;
    font-family: "Roboto", sans-serif;
    border: 5px solid #4CAF50;
    border-collapse: collapse;
    width: 100%;
}

.default-table th
{
    background-color: #4CAF50;
    text-align: left;
    color: white;
}

.default-table td, th 
{
    padding: 8px;
}

.default-table tr:nth-child(even) 
{
    background-color:#dddddd;
}

/*
    EDIT USER MODALBOX CODE
*/
.edit-user-mbox
{
    display: block;
    width: 75%;
    margin: 0 auto;
    font-size: 500%;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.edit-user-mbox.success                  { color: green; }
.edit-user-mbox.error                    { color: red; }

.edit-user-mbox p
{
    font-size: initial;
    font-size: medium; /* IE10 */
    font-weight: bold;
    text-align: center;
}


.edit-profile-mbox-closebtn
{
    display: block;
    background: white;
    color: blue;
    border: none;
    margin: 0 auto;
    padding: 2.5%;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: 0.5s background-color, 0.5s color;
    -webkit-transition: 0.5s background-color, 0.5s color;
    -moz-transition: 0.5s background-color, 0.5s color;
    -ms-transition: 0.5s background-color, 0.5s color;
    -o-transition: 0.5s background-color, 0.5s color;
}

.edit-profile-mbox-closebtn:hover
{
    background: blue;
    color: white;
}

.edit-profile-mbox-closebtn:focus
{
    outline: none;
}

.edit-profile-mbox-closebtn.success                     { background: white; color: green; }
.edit-profile-mbox-closebtn.error                       { background: white; color: red; }
.edit-profile-mbox-closebtn.success:hover               { background: green; color: white; }
.edit-profile-mbox-closebtn.error:hover                 { background: red; color: white; }

.message { text-align: left; font-family: "Raleway"; }
.message.message-error { color: red; }
.message.message-success { color: green; }
.message.message-warning { color: orange; }


.view-details-table
{
    width: 98%;
    padding: 2.5%;
    margin: 1%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: "Raleway";
    border-spacing: 0;
    border-color: none;
    border-collapse: collapse;
    table-layout: fixed;
    color: black;
}

.view-details-table .view-details-table-tbody th
{
    text-align: left;
}

.view-details-table .view-details-table-tbody tr
{
    border-top: 1px solid #ddd;
    transition: 0.5s background-color;
    -webkit-transition: 0.5s background-color;
    -moz-transition: 0.5s background-color;
    -ms-transition: 0.5s background-color;
    -o-transition: 0.5s background-color;
}

.view-details-table .view-details-table-tbody tr:hover
{
    background: #f5f5f5;
}

.view-details-table th, .view-details-table td
{
    padding: 1%;
}

.view-details-table-link
{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: green;
    padding: 1% 2.5%;
    font-size: 85%;
    box-shadow: 0 0 0 green;
    -webkit-box-shadow: 0 0 0 green;
    -moz-box-shadow: 0 0 0 green;
    transition: 0.5s background-color, 0.5s box-shadow;
    -webkit-transition: 0.5s background-color, 0.5s box-shadow, 0.5s -webkit-box-shadow;
    -moz-transition: 0.5s background-color, 0.5s box-shadow, 0.5s -moz-box-shadow;
    -ms-transition: 0.5s background-color, 0.5s box-shadow;
    -o-transition: 0.5s background-color, 0.5s box-shadow;
}

.view-details-table-link:hover
{
    background: darkgreen;
    box-shadow: 0 0 2.5px darkgreen;
    -webkit-box-shadow: 0 0 2.5px darkgreen;
    -moz-box-shadow: 0 0 2.5px darkgreen;
}