.body {
    background-color: #f8f9fa;
}

.bg-teal-500 {
    background-color: var(--teal-500) !important;
}

.btn-teal-500 {
    background-color: var(--teal-500);
    color: white;
}

.btn-teal-500:hover{
    background-color: var(--teal-500);
    color: white;
}

.card {
    text-align: right;
}

.card-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
}

.post-header{
    background-size: cover;
    background-position: center;
    height: 50px;
    position: relative;
}

.post-header h3 {
    position: absolute;
    bottom: 10px;
    top: 10px;
    right: 20px;
    color: white;
    background-color: gray;
    padding: 10px 20px;
    border-radius: 10px;
}

.post-content img {
    max-width: 100%;
    border-radius: 10px;
}

.post-content {
    line-height: 2;
    font-size: 1.1rem;
    text-align: justify;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.post-content h2,
.post-content h3 {
    margin-top: 2rem;
    color: #009688;
}

.post-content blockquote {
    border-right: 4px solid #009688;
    padding-right: 1rem;
    margin: 1.5rem 0;
    color: #555;
}

.social-share a {
    transition: all 0.3s;
}

.social-share a:hover {
    color: #009688 !important;
    transform: translateY(-3px);
}

.bg-teal-100 {
    background-color: #e0f2f1;
}

.text-teal-800 {
    color: #00695c;
}