/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 6 Jan, 2023, 11:29:17 AM
    Author     : developer
*/

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 23 Dec, 2022, 1:11:48 PM
    Author     : developer
*/


.historyContainer{
    border:1px solid lightgray;
    width:90%;
    margin-top:20px;
    margin-bottom:20px;
    background-color: #ffffff;
    padding: 30px;
    height: 100%;
    display: inline-block;
}
.historyInner{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: 10px;
    border-radius: 5px;
    font-family: 'Roboto'; 
    font-size: 20px;
    font-weight: 400;
}
.historyheading{
    background-color: #4C6C3C;
    color:white;
    padding:30px;
}

.historyTitle{
    padding-top: 5px;
    padding-bottom: 5px;
    width:100%;

}
.historyButton{
    background-color: #04AA6D;
    color: white;
    padding: 8px;
    font-family: 'Roboto'; 
    font-size: 18px;
    border-radius: 3px;
    margin-top: 10px;
    border-color: #04AA6D;
    width: 46%;
}
.historyAnchor{
    color:#505050;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Roboto';
}
.historyAnchor:hover{
    color:black;
}
@media only screen and (max-width: 768px) {
    .historyContainer{
        padding: 10px;
        width:90%;
        display: block;
    }
    .historyButton{
        width: 90%;
        padding-left: 2px;
        padding-right: 10px;
    }
    .historyTitle{
        font-size: 18px;
    }
}