
     
        input:focus, textarea:focus {
           outline: 1px solid brown; /* Creates a visible focus indicator */
           background-color: gold; /* Changes background color */
           border-color: blue; /* Can also change border color */ 
            
        }   
        
        main GB{
            display: flex;
            justify-content: center;
            align-content: center;
        }   
    
    .guestbookarea {
        height: 100vh;
        overflow: auto;
        width: 750px;
        margin: 25px 0;
        border: 2px solid green;
        background-color: black;
        color: white;
        line-height: 1.2;
        font-size: 1.1em;
        padding: 8px;
    }

    .BFS_Guest {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .BFS_Guest:hover {
        cursor: pointer;
        filter: drop-shadow(0 0 20px gold);
    }
        
        .inputid {
            margin-bottom: 2px;
        }   
        
        .inputid_v {
            margin-bottom: 2px;
        }   

        .inputfields {
            border: 1px solid white;
            width: 100%;
            padding: 5px;
        }
        
        
        .outputarea {
            width: 100%;
            border-top: 3px solid red;
        }
        
        .user {
            display: flex;
            justify-content: space-between;
            padding-top: 5px;
        }
        
    
        
        #welcome {
            color: lawngreen;
            text-align: center;
        }
        
        .center {
            text-align: center;
            font-weight: bold;
        }
        
        .InputCenter {
            width: 80%;
            margin: 0 auto;
        }
        
        .inputid::after {
            content: "*";
            color: red;
        }
        
        .Alert1 {
            position: relative;
        }
        
        input[type=submit]{
            border: none;
            color: black;
            background-color: #FF8a8a;
            padding: 10px 30px;
            border-radius: 4px;
        }
            
            input[type=submit]:hover {
                background-color: #B31417;
            }    
            
        .InputAlign {
            display: flex;
            justify-content: space-evenly;
        }
        
        .InputAlign > div{
            width: 40%;
        }
        
        .pagination {
            text-align: center;
            font-size: 1.5em;
            background-color: darkgrey;
        }
        
        .pagination a {
             display: inline-block;
             margin: 5px 15px;
        }
            
        a {
            color: blue;
            text-decoration: none;
          }
    
        #currentpage {
            color: red;
        }
        
        .FormAlert1 {
            position: absolute;
            top: 90px;
            left: 0px;
            color: orange;
            font-size: 0.9em;
        }
        
        input:invalid {
             box-shadow: 0 0 5px 1px red;
        }
        
        
        @media only screen and (max-width: 800px){
            .guestbookarea {
                width: 100%;
                margin: 60px 0;
                
            }
            
            .user  {
            display: flex;
            flex-direction: column;    
        }
          
            .pagination {
                font-size: 1em;
            
        }
            
            
            
}
        
