.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 10px 0;
    border-top: 5px solid #1c1818bf;
    border-bottom: 5px solid #1c1818bf;
}
.post-navigation .nav-previous, .post-navigation .nav-next {
    flex: 1;
    text-align: center;
}
.post-navigation .nav-previous a, .post-navigation .nav-next a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border: 2px solid #333;
    border-radius: 5px;
    transition: all 0.3s ease;
 	background:#00aec1;
	min-width: 90%;
}
.post-navigation .nav-previous a:hover, .post-navigation .nav-next a:hover {
    background:#0b2c4f;
}
.post-navigation .nav-previous a i, .post-navigation .nav-next a i {
    margin-right: 5px;
}
@media (max-width: 1080px) {
.postcontent{
	max-width:99%;
	}
.postcontent img{
	max-width:100%;		
	}
}
/*Zoom*/ 
.zoomsingle {
    transition: transform 0.3s ease, transform-origin 0.3s ease;
    cursor: zoom-in;
}

.zoomsingle.zoomedsingle {
    transform: scale(3); /* Ajusta el nivel de zoom deseado */
    cursor: zoom-out;
}
.postcontent{overflow:hidden;}
/*Tags*/
.post_tags {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    margin: 20px auto;
}

.post_tags ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.post_tags ul li {
    display: inline-block;
}

.post_tags ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    padding: 8px 15px;
    background-color: #007bff; 
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post_tags ul li a:hover {
    background-color: #0056b3; 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.post_tags ul li a i {
    font-size: 14px;
}