/* For Posts List by CodexWorld */
.posts_list{ 
margin-bottom:20px;
}
div.list_item {
border-left: 4px solid #0d6efd;/*#7ad03a;*/
padding: 1px 12px;
background-color:#F1F1F1;
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}
div.list_item {
margin: 5px 1px 2px;
}
div.list_item p {
margin: .5em 0;
padding: 2px;
font-size: 13px;
line-height: 1.5;
}
div.cart_numberOfBooks {
	position: absolute;
    top: 40px;
    /*left: 12px;*/
    display: inline-block;
    padding: 2px 4px;
    min-width: 8px;
    /*max-width: 20px;*/  
	width: 30px;	
	height: 22px;
    border: 1px solid #000;
    border-radius: 22px;
    text-align: center;
    font-family: "Roboto","Arial",sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
	background-color: #c00;
    color: #fff;
}
.list_item a {
text-decoration: none;
padding-bottom: 2px;
color: #0074a2;
-webkit-transition-property: border,background,color;
transition-property: border,background,color;-webkit-transition-duration: .05s;
transition-duration: .05s;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out;
}
.list_item a:hover{ 
text-decoration:underline;
}
/* For Loading Overlay by CodexWorld */
.post-wrapper{position: relative;}
.loading-overlay{display: none;position: absolute;left: 0; top: 0; right: 0; bottom: 0;z-index: 2;background: rgba(255,255,255,0.7);}
.overlay-content {
    position: absolute;
    transform: translateY(-50%);
     -webkit-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #555;
}
/* For Pagination Links by CodexWorld */
div.pagination {
	font-family: "Lucida Sans Unicode", "Lucida Grande", LucidaGrande, "Lucida Sans", Geneva, Verdana, sans-serif;
	padding:20px;
	margin:7px;
}
div.pagination a {
	margin: 2px;
	padding: 0.5em 0.64em 0.43em 0.64em;
	background-color: #0d6efd; /*#a1d6e2;*/
	text-decoration: none;
	color: #fff;
	font-weight: normal;
	border-radius: 5px;
}
div.pagination a:hover, div.pagination a:active {
	padding: 0.5em 0.64em 0.43em 0.64em;
	margin: 2px;
	background-color: orange; /*#4d4d4d;*/ 
	color: #fff;
	font-weight: bold;
}
div.pagination span.current {
    padding: 0.5em 0.64em 0.43em 0.64em;
    margin: 2px;
    background-color: #f6efcc;
    color: #6d643c;
}
div.pagination span.disabled {
    display:none;
}
.button {
    /*background-color: #008CBA; /* Blue */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}
.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Базов стил за изображението на количката */
.cart-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ефект при задържане с мишката върху изображението на количката */
.cart-image:hover {
    transform: scale(1.1); /* Увеличаване на изображението */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Добавяне на сенки */
}