/* To reset the css */
body,header,h1,h2,h3,h4,h5,h6,nav,a,div,ul,li,footer{
    padding: 0;
    margin: 0;
    border: 0;
}

header
{
    background: skyblue;
    text-align: center;
    padding: 20px;
}
nav
{
    text-align: center;
}
.content
{
    width: auto;
    min-height: 500px;
}
.image-box
{
    display: inline-block;
    width: 250px;
    height: 230px;
    border: 2px solid black;
    margin: 5px;
    text-align: center;   
} 
.image-box img
{
    width: 250px;
    height: 187px;
    position: relative;
}

#title
{
    height: 36px;
    width: 245px;    
    overflow: hidden;
}
footer
{
    background: skyblue;
    text-align: center;
    padding: 15px;
}

/* form
{
    background-color: skyblue;
    width: 300px;
    margin: 0 auto;
    padding: 30px;
    margin-top: 50px;
} */
/* These are table properties */
table
{
    width: 50%;
    border: 2px solid black;
}
th,tr,td
{
    text-align: center;
    border: 2px solid black;
}
th
{
    background-color: skyblue;
}

    /*------------------------------------------------
            POPUP MESAGES AND REMOVE CONTENT
-----------------------------------------------------*/        
    .cross
    {
        font-size: 60px;
        position: absolute;
        z-index: 5;
        font-size: 60px;
        color: white;    
    }
    .cross:hover
    {
        color: blue;
        cursor: pointer;
    }

    .overlay
    {
        margin: 0 auto;
        position: fixed;
        width: 60%;
        height: 80%;
        background-color: yellowgreen;
        color: black;
        display: none;
        z-index: 5;
        top: 50px;
        left: 250px;
        border-radius: 15px;
        overflow: auto;
    }
    
    .overlay form img
    {
        width: 300px;
        height: 300px;
    }
    /*----------------------------------------- 
        LOGIN FORM 
-------------------------------------------*/

    form {
        border: 3px solid #f1f1f1;
        width: 60%;
        margin: 20px auto;
    }

    input[type=text], input[type=password] {
        width: 100%;
        padding: 12px 20px;
        margin: 8px 0;
        display: inline-block;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

    button {
        background-color: skyblue;
        color: black;
        padding: 14px 20px;
        margin: 8px 0;
        border: none;
        cursor: pointer;
        width: 100%;
    }

    button:hover {
        opacity: 0.8;
    }

    .cancelbtn {
        width: auto;
        padding: 10px 18px;
        background-color: #f44336;
    }


    .container {
        padding: 16px;
    }

    span.psw {
        float: right;
        padding-top: 16px;
    }

    /* Change styles for span and cancel button on extra small screens */
    @media screen and (max-width: 300px) {
        span.psw {
        display: block;
        float: none;
        }
        .cancelbtn {
        width: 100%;
        }
    }


    /*--------------------------------------------------
                    BREAD CRUMB pagination
------------------------------------------------------*/
    ul.breadcrumb {
        padding: 10px 16px;
        list-style: none;
        background-color: #eee;
    }
    ul.breadcrumb li {
        display: inline;
        font-size: 18px;
    }
    ul.breadcrumb li+li:before {
        padding: 8px;
        color: black;
        content: "/\00a0";
    }
    ul.breadcrumb li a {
        color: #0275d8;
        text-decoration: none;
    }
    ul.breadcrumb li a:hover {
        color: #01447e;
        text-decoration: underline;
    }

    /*-----------------------------------------------
                    CARD SYLES
----------------------------------------------------*/
    .card {
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        transition: 0.3s;
        width: 20%;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .card img
    {
        width: 100%;
    }

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

    .container {
        padding: 2px 16px;
    }
    .toper-container
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }