@media only screen and (max-width: 600px) {

    body {
        background-color: rgb(231, 231, 231);
        font-family: "Montserrat", sans-serif;
        
    }
    
    a { 
        width: 100%;
        text-decoration: none;
        color: #333;
        display: inherit;
    }

    img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    input[type="date"] {
        padding: 8px 12px;
        border: 1px solid #b0b0b0;
        border-radius: 6px;
        background: #f8f8fc;
        color: #333;
        font-size: 1rem;
        transition: border-color 0.2s, box-shadow 0.2s;
        box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    }
    
    input[type="date"]:focus {
        border-color: #4a90e2;
        outline: none;
        box-shadow: 0 2px 6px rgba(74,144,226,0.12);
    }
    
    textarea {
        width: 100%;
        min-height: 80px;
        padding: 10px 14px;
        border: 1px solid #b0b0b0;
        border-radius: 8px;
        background: #f8f8fc;
        color: #333;
        font-size: 1rem;
        resize: vertical;
        box-shadow: 0 1px 2px rgba(0,0,0,0.04);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    textarea:focus {
        border-color: #4a90e2;
        outline: none;
        box-shadow: 0 2px 6px rgba(74,144,226,0.12);
    }
    
    input[type="text"] {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid #b0b0b0;
        border-radius: 8px;
        background: #f8f8fc;
        color: #333;
        font-size: 1rem;
        box-shadow: 0 1px 2px rgba(0,0,0,0.04);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    input[type="text"]:focus {
        border-color: #4a90e2;
        outline: none;
        box-shadow: 0 2px 6px rgba(74,144,226,0.12);
    }
    
    input[type="file"] {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid #b0b0b0;
        border-radius: 8px;
        background: #f8f8fc;
        color: #333;
        font-size: 1rem;
        box-shadow: 0 1px 2px rgba(0,0,0,0.04);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    input[type="file"]:focus {
        border-color: #4a90e2;
        outline: none;
        box-shadow: 0 2px 6px rgba(74,144,226,0.12);
    }

    select {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid #b0b0b0;
        border-radius: 8px;
        background: #f8f8fc;
        color: #333;
        font-size: 1rem;
        box-shadow: 0 1px 2px rgba(0,0,0,0.04);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    h4 {
        margin: 0;
        width: 100%;
        text-align: left;
    }

    th{
        border-bottom: 2px solid #333;
        border-right: none;
        border-left: none;
        border-top: none;
        padding-left: 0px;
        padding-right: 0px;

    }

    td, th {
    border-left: none;
    border-right: none;
    border-top: none;
    }
    table{
        border-collapse: collapse;
        width: 100%;
        border: none;
    }

    td{
        text-align: center;
        padding-bottom: 2px;
        padding-top: 2px;
    }

    td:nth-child(1){
        text-align: left
    };

}