/* Edit and Delete Post Styles */

/* Button container styles */
.btn {
    background: linear-gradient(135deg, #1baef2 0%, #6dbefc 100%);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
}

.edit-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.edit-buttons {
    display: flex;
    gap: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .button-cont {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
