/*
Theme Name: Lawyer
Author: Branko Teodorovic
Author URI: https://wordpress.org/
Description: WP theme for Lawyers
Tags: Responsive, bootstrap , multypage, lawyer
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lawyer
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

.logged-in header {
    margin-top: 32px;
}

div.wpcf7-response-output {
    color: red; /* Set the text color to red */
}
.error-page h1{
    font-size:10rem;
    font-weight:bold;
}
.error-page p{
    font-size:3rem;
    line-heigh:3,5rem;
    font-weight:500;
    margin-bottom: 20px;
}

@media(min-width:768px){
    .error-page {
        padding: 5rem 0 !important
}
    .error-page h1{
    font-size:15rem;
    
}
    .error-page p{
    
    margin-bottom: 50px;
}
}

@media(min-width:1200px){
    .error-page {
        padding: 14rem 0 !important
}}

/* Pagination links for news section */
.news-pagination a,
.single-news-pagination a {
    font-size: 2rem;
    font-weight: 500;
    padding: 10px;
    background-color: #ccc;
    color: #000;
    text-decoration: none;
    transition: 0.2s linear; /* Corrected the syntax issue here */
}

/* Hover effect for pagination links */
.news-pagination a:hover,
.single-news-pagination a:hover {
    box-shadow: 0 0 10px #444;
}


.nav-links{
    display:flex;
    border: 1px solid #aaa;
    margin-left:auto;
    margin-right:auto;
}

.page-numbers{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align:center;
    background-color: #ccc;
    color:#000;
    text-decoration:none;
    border-right: 1px solid #aaa;
}



.page-numbers.current{
    background-color: #0056b3;
    color:#fff;
}


.widget ul {
    
    padding-left: 0;
    list-style: none;
}

.widget ul a{
    
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color:#000;
    text-decoration:none;
    margin-bottom: 15px;
    transition:0,3s linear;
}

.widget ul a:hover{
    padding-left: 10px;
}

.widget .widget-title{
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
    color: #004085;
}

.widget .searchform div{
    display: flex;
}

.widget .searchform #s{
    flex: 0 0 70%;
    border: 1px solid #ccc;
    background-color: #fff;
    line-height:3rem;
    font-size:1.8rem;
    color:#000;
    padding:5px;
    max-width:70%;
}

.widget .searchform #searchsubmit {
    flex: 0 0 30%;
    line-height:3rem;
    font-size:1.8rem;
    color:#fff;
    background-color: #004085;
    border: none;
    padding:5px;
    max-width:30%;
}